<form method="post" name=myform>
姓 名:<input type="text" name="name" value=""><br>
学 号:<input type="text" name="num" value=""><br>
。。。:<input type="text" name="aaa" value=""><br>
。。。:<input type="text" name="bbb" value=""><br>
验证码:<img src="vcode/c.asp" onclick="this.src=this.src" title="点击图片可以更改验证码" height="13" width="52">
<input type="text" size="5" name="C" autocomplete="off" style="ime-mode:disabled;" value="">
<input type="submit" value="提交">
</form>
asp代码:
<%
c = Request.form("c")
'如果可以输入小写的数字,请把下面三行注释掉
for ii = 0 to 9
c = Replace(c,Cstr(ii),"")
next
c = Replace(c,"零","0")
c = Replace(c,"一","1")
c = Replace(c,"二","2")
c = Replace(c,"三","3")
c = Replace(c,"四","4")
c = Replace(c,"五","5")
c = Replace(c,"六","6")
c = Replace(c,"七","7")
c = Replace(c,"八","8")
c = Replace(c,"九","9")
if Cstr(c) <> Cstr(Session("validateCode")) then
Response.write ("验证码不正确")
Response.end
end if
%>
相关文章
- 使用js实现登录随机验证码的效果
- Python爬虫入门教程 55-100 python爬虫高级技术之验证码篇
- 不需要GD库的情况下实现验证码,看看这个大家需不需要!
- selenium结合tenacity的retry实现验证码失败重试
- 织梦DEDECMS后台验证码错误不能正常验证的3种可能原因和解决方法
- MVC中验证码的简单使用
- PHP网页中因为 要生成验证码而出现 图像“http://localhost/**.php”因其本身有错无法显示
- 阿里云服务器验证码不能显示解决办法java.lang.Error: Probable fatal error:No fonts found
- 随机生成文字图片验证码
- 验证码图片生成