[求助]not isempty是什么意思?
if not isempty(request("page")) then currentPage=cint(request("page")) 上面这句有几个地方不明白: 1、if not isempty有没有这样的句法。按正常英语的说法应该是 if is not empty,这句不能理解 2、request("page")) 中间为什么没有form? 3、cint是什么意思? 偶是菜菜,请高手指点,谢谢!! |
if not isempty(request("page")) then currentPage=cint(request("page")) 上面这句有几个地方不明白: 1、if not isempty有没有这样的句法。按正常英语的说法应该是 if is not empty,这句不能理解 例:a="qqq",isempty(a)为真,not(isempty(a))也就是not (真)就为假 2、request("page")) 中间为什么没有form? 直接用Request会自动判断是哪种传送 3、cint是什么意思? 转化为整性 比如Cint('5'),结果5 偶是菜菜,请高手指点,谢谢!! |