怎样设置标题不可为空
大家好 我写了一段asp代码 作用是提交表单 但是请问大家怎样 设置才能使我的xm 这个不能我空 <%
Dim strxm ,strlxfs,,strshijian,stryp
strxm = trim(Request.Form("xm"))
strlxfs= trim(Request.Form("lxfs"))
stryp= trim(Request.Form("ypsl"))
strshijian= trim(Request.Form("sjap"))
dim rs
Set rs = Server.CreateObject("ADODB.Recordset")
rs.open "biaodan",conn,1,3
rs.addnew
rs("name")=strxm
rs("lxfs")=strlxfs
rs("yangpin")=stryp
rs("shijian")=strshijian
rs.update
rs.close
response.Write("<script> alert( '新记录已成功增加! '); </script> ")
%>
是不是要加上if strxm="" then
Response.write ("<script> alert( '标题不可为空! '); </script> ")
Response.write ("<script>history.go(-1)</script>")
response.end
else
但是我加上后不能正常显示网页 请问大家应该怎么办啊 谢谢大家