当前位置: 代码迷 >> ASP >> 怎么用ASP语句表达“空”
  详细解决方案

怎么用ASP语句表达“空”

热度:27   发布时间:2012-06-02 14:16:14.0
如何用ASP语句表达“空”?
我用Post方式从表单接收访问者输入的信息,当用户什么也没输入时,即为空时该如何用ASP语句来表达呢?
我这样写:if request.Form("u_input")="" then ……,提示这条语句有错误。谢谢!!

------解决方案--------------------
u_input = request.Form("u_input")
if u_input = "" or len(u_input) = 0 or isnull(u_input) then

...

end if


试试
  相关解决方案