广告位 后台主题配置管理 |
广告位 后台主题配置管理 |
本篇文章给大家谈谈asp服务器端表单验证,以及表单的执行不需要服务器端的支持对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。
表单验证都是通过js来验证的,比如一个form表单,txtname和txtpasswd
form aciton="xxx.asp" method="post" onsubmit="return check(this)"
input type="text" value="" name="txtname" /
input type="password" value="" name="txtpasswd" /
input type="submit" name="submit" value="tj" /
/form
function check(theform)
{
if (theform.txtname.value.length1)
{alert("请输入用户名");
theform.txtname.focus( );
return(false);}
if (theform.txtpasswd.value.length1)
{alert("请输入密码");
theform.txtpasswd.focus( );
return(false);}
}
Script language="javascript"
function check2(input){
if(!input.carUser.value=="%=Session("UserName")%"){
alert('登车人和用车人不符合');
}else{
alert('确定执行此操作?');
}
}
/Script
form name="form2" method="post" onsubmit="javascript:return check2(this);"
input type="text" name="carUser" id="carUser"
input type="submit" value="查询"
/form
确定是ASP验证而不是JS验证是吧.代码如下:
%
If Request.QueryString("action")="chk" Then
If Request("t1")"" AND Request("t2")"" AND Request("t3")"" Then
Response.Write "通过."
Else
Response.Write "" "script type=""text/javascript""alert('有未填的表单项.返回重填.');history.back();/script" ""
End If
Response.End
End If
%
html
body
form action="?action=chk" id="frm"
input type="text" name="t1"
input type="text" name="t2"
input type="text" name="t3"
input type="submit" value="确定"
/form
/body
/html
如果用JS验证,可以使用如下函数:
script type="text/javascript"
function chkfrm(o){
if(o.t1.value==''||o.t2.value==''||o.t3.value==''){
alert('有未填的表单项.');
return false;
}
}
/script
然后修改form标签为
form action="?action=chk" id="frm" onsubmit="javascript:chkfrm(this);"
如果还有问题欢迎追问,问题解决请及时选为满意回答,谢谢.
asp服务器端表单验证的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于表单的执行不需要服务器端的支持、asp服务器端表单验证的信息别忘了在本站进行查找喔。
广告位 后台主题配置管理 |
广告位 后台主题配置管理 |