<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
Dim nown,alln
alln = 3
nown = Request.QueryString("nown")
If nown="" Then nown = 1
Response.Write nown & "<br />"
Response.Write nown>alln & "<br />"
If nown>alln Then 
    Response.Write "End!!!" 'nown>3为条件时正确!
End If
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>cs</title>

</head>

<body>
<a href="?nown=<%=nown+1%>">+</a>
</body>
</html>

那个If 跟本没用,点第1次链接时就会显示End!!!为什么?如果判断的alln换成直接量3就一切正常为什么