发布网友 发布时间:2022-04-22 09:21
共1个回答
热心网友 时间:2023-10-03 06:22
静态网页也可以实现这个效果的(看看你现在浏览的这个页面是不是静态的?还不照样要输入验证码)1.给个例子,学习一下吧1.建三个文件 index.asp indexchk.asp code.asp2. index.asp程序 function info_onsubmit(){ var frm = document.reginfo; if (frm.getcode.value==""){ alert("请填写验证码!"); frm.getcode.focus(); return false; } reginfo.submit();}}//--> 验证码: 3. indexchk.asp 程序 <% dim Gcode gcode = Trim(request("GetCode")) If CStr(gcode) <> CStr(Session("getcode")) Then Response.Write (" alert('友情提示!\n\n登陆验证码错误!');history.back(); ") Response.end end if %> 友情提示!登陆验证码正确!呵呵4. code.asp 程序数字型验证程序请参考页面 http://250019399.blog.sohu.com/97279973.html 文字型验证程序请参考页面 http://250019399.blog.sohu.com/117162838.html2. 找个带验证码的程序研究研究!