请教高手们一个ASP语法小问题
<% if cint(prochangescore)>cint(userscore) then response.write "<script>alert('您的积分不足,无法兑换');history.go(-1);</script>"
end if
%>
--------------------- 上面两个变量是从不同的表里取出来的,
用 <% =prochangescore%>和<% =userscore%> 分别可得到90和20000的值,
IF语句里用cint(prochangescore)>20000 或者90>cint(userscore)
都可以得到正确的判断,但是2个变量在一起比较,就不成功,为什么呢?