ASP 表单检测问题,需要代码
有个表单,文本框名字是textreal,一个按钮是“提交”。想实现的功能是,,提交表单的时候检测textreal文本框是否为空,如果是空就返回,,,如果不是空就提交,并且...
有个表单,文本框名字是textreal,一个按钮是“提交”。
想实现的功能是,,提交表单的时候检测textreal文本框是否为空,
如果是空就返回,,,如果不是空就提交,并且把一个隐藏域中的数字1写入到一个名为aaa表的real字段里。请问代码怎么写啊?? 展开
想实现的功能是,,提交表单的时候检测textreal文本框是否为空,
如果是空就返回,,,如果不是空就提交,并且把一个隐藏域中的数字1写入到一个名为aaa表的real字段里。请问代码怎么写啊?? 展开
3个回答
展开全部
<%
action=request("action")
tt=request("tt")
tb=request("tb")
if action="add" then
conn.execute("insert into aaa(real,content) values("&tb&",'"&tt&"')")
end if
%>
<script>
function check(){
if (document.form1.tt.value==""){
alert("信息为空!");return false;
}
form1.submit();
}
</script>
<form name=form1 method=post action="?action=add" onsubmit="return check()" >
<textarea name=tt id=tt></textarea>
<input type=hidden name=tb value=1 />
<input type=submit name=submit value="tijiao">
</form>
action=request("action")
tt=request("tt")
tb=request("tb")
if action="add" then
conn.execute("insert into aaa(real,content) values("&tb&",'"&tt&"')")
end if
%>
<script>
function check(){
if (document.form1.tt.value==""){
alert("信息为空!");return false;
}
form1.submit();
}
</script>
<form name=form1 method=post action="?action=add" onsubmit="return check()" >
<textarea name=tt id=tt></textarea>
<input type=hidden name=tb value=1 />
<input type=submit name=submit value="tijiao">
</form>
展开全部
<script type="text/javascript">
function checkform(){
if(document.form1.textreal.value.length==0 || document.form1.textreal.value.indexOf(" ")!=-1)
{
alert('请输入内容');
document.form1.textreal.focus();
return false;
}
}
</script>
<%
action=request("action")
if action="add" then
real=request("real")
sql="insert into aaa(real) values("&real&")"
conn.execute(sql)
end if
%>
<form action="" id="form1" name="form1" onSubmit="return checkform()">
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><textarea name="textreal" id="textreal"></textarea></td>
</tr>
<tr>
<td><input type="submit" value="提交"/>
<input name="real" type="hidden" id="real" value="1">
<input name="action" type="hidden" id="action" value="add"></td>
</tr>
</table>
</form>
function checkform(){
if(document.form1.textreal.value.length==0 || document.form1.textreal.value.indexOf(" ")!=-1)
{
alert('请输入内容');
document.form1.textreal.focus();
return false;
}
}
</script>
<%
action=request("action")
if action="add" then
real=request("real")
sql="insert into aaa(real) values("&real&")"
conn.execute(sql)
end if
%>
<form action="" id="form1" name="form1" onSubmit="return checkform()">
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><textarea name="textreal" id="textreal"></textarea></td>
</tr>
<tr>
<td><input type="submit" value="提交"/>
<input name="real" type="hidden" id="real" value="1">
<input name="action" type="hidden" id="action" value="add"></td>
</tr>
</table>
</form>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
等等,马上给你写!
<html>
<head>
<title>JavaScript判断文本框为空则不能提交——示例代码</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>
<BODY>
<script language="javascript">
function isNumberString (InString,RefString)
{
if(InString.length==0) return (false);
for (Count=0; Count < InString.length; Count++) {
TempChar= InString.substring (Count, Count+1);
if (RefString.indexOf (TempChar, 0)==-1)
return (false);
}
return (true);
}
function check1()
{
if (document.form1.textreal.value=="")
{
alert("请输入内容,不能为空!");
return false;
}
}
</script>
<%if request("hid")="" then%>
<table align="center">
<form name="form1" method="post">
<tr>
<td align="right">测试:</td>
<td class="category"><input name="textreal"></td>
</tr>
<tr>
<td height="30"> </td>
<td class="category">
<input type="submit" value=" 确认添加 " onClick="return check1()" class="button">
<input name="hid" type="hidden" value="OK">
<input type="reset" value=" 重新填写 " class="button">
</td>
</tr>
</form>
</table>
<%
else
sql="insert into aaa(real) values(1) where 条件(无的话直接删除where后面的即可)"
conn.execute(sql)
end if
%>
</body>
</html>
<html>
<head>
<title>JavaScript判断文本框为空则不能提交——示例代码</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>
<BODY>
<script language="javascript">
function isNumberString (InString,RefString)
{
if(InString.length==0) return (false);
for (Count=0; Count < InString.length; Count++) {
TempChar= InString.substring (Count, Count+1);
if (RefString.indexOf (TempChar, 0)==-1)
return (false);
}
return (true);
}
function check1()
{
if (document.form1.textreal.value=="")
{
alert("请输入内容,不能为空!");
return false;
}
}
</script>
<%if request("hid")="" then%>
<table align="center">
<form name="form1" method="post">
<tr>
<td align="right">测试:</td>
<td class="category"><input name="textreal"></td>
</tr>
<tr>
<td height="30"> </td>
<td class="category">
<input type="submit" value=" 确认添加 " onClick="return check1()" class="button">
<input name="hid" type="hidden" value="OK">
<input type="reset" value=" 重新填写 " class="button">
</td>
</tr>
</form>
</table>
<%
else
sql="insert into aaa(real) values(1) where 条件(无的话直接删除where后面的即可)"
conn.execute(sql)
end if
%>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询