请教一个判断语句
<%
temp3=trim(request("out_amount"))
temp6=trim(request("now_amount"))
if temp3>temp6 then
response.write "<script language='javascript'>" & chr(13)
response.write "alert('现有库存量不足!');" & Chr(13)
response.write "window.document.location.href='materialnow_list.asp';"&Chr(13)
response.write "</script>" & Chr(13)
Response.End
end if
%>
我每次输入的temp3大于1且小于temp6
但是都显示的是“现有库存量不足”
而我输入temp3=1时 此判断正常