asp 数字对比大小

asp 数字对比大小,第1张

写法正确,但不知你在比较前是否将两个变量转换为数值型通常情况下,你接收到的浏览器提交来的数据都是字符串型的,直接比较的话,是按字符串的ASCII值进行比较的,而非进行数值比较
试试用
if CDbl(yuanjia)<CDbl(jiage) then

<%
dim aa,ab,ac,ad
aa=formatdatetime("20:43:05",vblongtime)
ab=time()
ac=hour(aa)3600+minute(aa)60+second(aa)
ad=hour(ab)3600+minute(ab)60+second(ab)
if ac>ad then
responsewrite "时间未到"
else
responsewrite "时间已过"
end if
%>

<%
if xiao9<100 then
responsewrite "1"
else
responsewrite ""
responseend
end if
%>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/13410844.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-07-30
下一篇 2023-07-30

发表评论

登录后才能评论

评论列表(0条)

保存