关于ASP中文本框内容的检查
我是想实现这个问题:用户在文本框里输入内容.我要判断这里面是否有我要他输入的必须字符.比如,我想让用户输入的内容里,必须包含.com与.blog请问如何编写!!??...
我是想实现这个问题:
用户在文本框里输入内容.我要判断这里面是否有我要他输入的必须字符.
比如,我想让用户输入的内容里,必须包含 .com 与 .blog
请问如何编写!!?? 展开
用户在文本框里输入内容.我要判断这里面是否有我要他输入的必须字符.
比如,我想让用户输入的内容里,必须包含 .com 与 .blog
请问如何编写!!?? 展开
4个回答
展开全部
<%
dim str
str="com" '-----------要包含的字符
if instr(request.Form("content"),str)=0 then
response.write "<script language='javascript'>alert('您输入的内容不包含<"&str&">');</script>"
else
response.write "<script language='javascript'>alert('您输入的内容包含有<"&str&">');</script>"
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<form name="form1" method="post" action="">
<textarea name="content" id="content"></textarea>
<input type="submit" name="Submit" value="提交">
</form>
</body>
</html>
dim str
str="com" '-----------要包含的字符
if instr(request.Form("content"),str)=0 then
response.write "<script language='javascript'>alert('您输入的内容不包含<"&str&">');</script>"
else
response.write "<script language='javascript'>alert('您输入的内容包含有<"&str&">');</script>"
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<form name="form1" method="post" action="">
<textarea name="content" id="content"></textarea>
<input type="submit" name="Submit" value="提交">
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
表单验证通常使用JAVASCRIPT脚本,这样可以减少服务器压力,同时提高页面与用户的交互能力.使用下面的JS语句
if ( Text(文本框名称).value.indexOf(".com") > 0 )
表示文本框中出现了".com"字符串.
仅作参考!
if ( Text(文本框名称).value.indexOf(".com") > 0 )
表示文本框中出现了".com"字符串.
仅作参考!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
b = split(str1,".")
for i = 0 to ubound(b)
if b(i) = "com" or b(i) = "blog" then
msgbox "有"
exit for
else
msgbox "没有"
exit for
end if
next
for i = 0 to ubound(b)
if b(i) = "com" or b(i) = "blog" then
msgbox "有"
exit for
else
msgbox "没有"
exit for
end if
next
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用instr函数
instr(a,b),如果a中包含b,则instr(a,b)>0,如果不包含instr(a,b)=0
如:
if (instr('abcdefg','cde')>0) then
response.write "存在"
end if
instr(a,b),如果a中包含b,则instr(a,b)>0,如果不包含instr(a,b)=0
如:
if (instr('abcdefg','cde')>0) then
response.write "存在"
end if
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询