asp表单验证
我主要是想采用vbscript来验证。如我的代码如下<%@LANGUAGE="VBSCRIPT"CODEPAGE="936"%><scriptlanguage="vbsc...
我主要是想采用vbscript来验证。如我的代码如下
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<script language="vbscript">
sub b1_onclick()
if document.form1.uname.value="" then
msgbox "用户名不能为空"
end if
end sub
</script>
<body>
<form id="form1" name="form1" method="post" action="login.asp">
<label>用户名:
<input name="uname" type="text" id="uname" />
<br />
<br />
密码
<input name="pass" type="text" id="pass" />
</label>
<p>
<label>
<input name="b1" type="submit" id="b1" value="登陆" />
</label>
<label>
<input type="reset" name="b2" value="重置" />
</label>
</p>
</form>
</body>
当我没有输入用户名,出现对话框“你没有输入用户名”可是他还是把表单提交了,我要怎么才能不让它提交表单呢。
各位高手朋友,帮帮忙啊? 展开
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<script language="vbscript">
sub b1_onclick()
if document.form1.uname.value="" then
msgbox "用户名不能为空"
end if
end sub
</script>
<body>
<form id="form1" name="form1" method="post" action="login.asp">
<label>用户名:
<input name="uname" type="text" id="uname" />
<br />
<br />
密码
<input name="pass" type="text" id="pass" />
</label>
<p>
<label>
<input name="b1" type="submit" id="b1" value="登陆" />
</label>
<label>
<input type="reset" name="b2" value="重置" />
</label>
</p>
</form>
</body>
当我没有输入用户名,出现对话框“你没有输入用户名”可是他还是把表单提交了,我要怎么才能不让它提交表单呢。
各位高手朋友,帮帮忙啊? 展开
展开全部
哎,一楼的,自己不会就不要指责人家。会多一样有错吗?我也会啊。我来实现和完善一下。
<html>
<script language="vbscript">
function b1_onclick()
if Trim(document.form1.uname.value)="" then
msgbox "用户名不能为空"
Window.event.returnValue=false
end if
end function
</script>
<body>
<form id="form1" name="form1" method="post" action="login.asp" onsubmit="b1_onclick()">
<label>用户名:
<input name="uname" type="text" id="uname" />
<br />
<br />
密码
<input name="pass" type="text" id="pass" />
</label>
<p>
<label>
<input name="b1" type="submit" id="b1" value="登陆" />
</label>
<label>
<input type="reset" name="b2" value="重置" />
</label>
</p>
</form>
</body>
</html>
<html>
<script language="vbscript">
function b1_onclick()
if Trim(document.form1.uname.value)="" then
msgbox "用户名不能为空"
Window.event.returnValue=false
end if
end function
</script>
<body>
<form id="form1" name="form1" method="post" action="login.asp" onsubmit="b1_onclick()">
<label>用户名:
<input name="uname" type="text" id="uname" />
<br />
<br />
密码
<input name="pass" type="text" id="pass" />
</label>
<p>
<label>
<input name="b1" type="submit" id="b1" value="登陆" />
</label>
<label>
<input type="reset" name="b2" value="重置" />
</label>
</p>
</form>
</body>
</html>
展开全部
不知道VBSCRIPT里能不能用return false如果可以用就在每一个判断后面加个这个,然后在登陆按扭事件写return b1_onclick()
闲着没事干啊用vbscript写表单验证...
闲着没事干啊用vbscript写表单验证...
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询