判断字段为空用=不过,用<>就能过是什么原因?
if Request.QueryString("Action")="sq" then if rs("img")="" or rs("zil")="" or rs("zw")="" then
Response.Write ("<script>alert('信息不完整,请检查!');</script>")
else
rs("sqsh")=1
rs("shyj")=""
rs.Update
rs.Close
set rs=nothing
Response.Write ("<script>alert('申请成功!');location.href='user.asp';</script>")
end if
end if
当IMG ZIL ZW有为空时也能提交通过, 后来改成下面的,就正确了,
if Request.QueryString("Action")="sq" then
if rs("img")<>"" and rs("zil")<>"" and rs("zw")<>"" then
rs("sqsh")=1
rs("shyj")=""
rs.Update Response.Write ("<script>alert('申请成功!');location.href='dyzkz.asp';</script>")
else
Response.Write ("<script>alert('照片、资料、报考职位还有填写的!');</script>")
end if
end if
为什么?第一个错哪呢?