关于地址栏参数
我写了一个ASP文件22.asp,代码如下:<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<%
if request.QueryString("page")="" then
page=1
else
page=request.QueryString("page")
end if
zpage=5
if page<zpage then
response.Write "aaa"
else
response.Write "bbb"
end if
%>
</body>
</html>
当我运行22.asp?page=1时,输出:
bbb
明明page<zpage条件成立,应该输出aaa,为什么却输出bbb呢?