asp的输入框判断语句怎么写啊

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "><html xmlns=" http://www.w3.org/1999/xhtml "><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>΀请输入</title></head><body><form name="form1" method="post" action="add_new.asp">帐号<input type="text" name="name"><br>密码<input type="text" name="content"><br><保护<input type="text" name="title" value=""><br><input type="submit" name="Submit" value="提交"><input type="reset" name="Submit2" value="重置"></form></body></html>比如就加一个,没输入帐号或密码的,就提示帐号密码不可以为空的代码,急啊,在这段代码上加就可以,谢谢,别乱弄一堆东西来 展开
 我来答
尚子素
2011-04-29 · TA获得超过600个赞
知道小有建树答主
回答量:566
采纳率:33%
帮助的人:202万
展开全部
最好在客户端进行检查,在表单提交事件中执行检测
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content=
"HTML Tidy for Linux/x86 (vers 11 February 2007), see www.w3.org" />
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
<script >
function checkform()
{
if (document.form1.name.value=="")
{

alert('请输入用户名');
return false;
}
else if (document.form1.content.value=="")
{

alert('请输入密码');
return false;
}
// If the script gets this far through all of your fields
// without problems, it's ok and you can submit the form

return true;
}

</script>
<title>΀请输入</title>
</head>

<body>
<form name="form1" method="post" action="add_new.asp" id="form1" onSubmit="return checkform()">
帐号<input type="text" name="name"><br />
密码<input type="text" name="content" /><br />
保护<input type="text" name="title" value= "" /><br />
<input type="submit" name="Submit" value="提交" /><input type=
"reset" name="Submit2" value="重置" />
</form>
</body>
</html>
社保违章
2011-04-29 · TA获得超过228个赞
知道答主
回答量:212
采纳率:100%
帮助的人:45.4万
展开全部
<%
IF request.form("username") = "" Then
Response.write("<script language='javascript'">alert('用户名不能为空');</script>)
End IF
%>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式