打开登录页面的源文件admin_login.asp,去掉以下代码: if (document.Login.GetCode.value==""){ alert ("请输入您的验证码!"); document.Login.GetCode.focus(); return(false); } <tr> <td align="right"><span >验 证 码:</span></td> <td><input name="GetCode" id="GetCode" style="border-style:solid;border-width:1;padding-left:4;padding-right:4;padding-top:1;padding-bottom:1" onFocus="this.select(); " onmouseover="this.style.background='#D6DFF7';" onmouseout="this.style.background='#FFFFFF'" size="6" maxlength="4"> <img src="inc/code.asp"></td> </tr> 然后打开admin_chklogin.asp文件,然后去掉以下代码: dim GetCode,valicode GetCode=int(request("GetCode")) valicode=int(session("GetCode")) if GetCode<>valicode then FoundErr=True ErrMsg=ErrMsg & "<br><li>验证码错误!</li>" end if |