帮我修改下asp源程序

来源:百度知道 编辑:UC知道 时间:2024/05/20 14:17:19
http://www.xzhjs.cn/daima.txt

文件太大 请打开网站查看
此断代码里包含了 判断验证码对错
我现在想把验证码取消掉
希望高手指点 我一点都不懂的
麻烦高手帮我修改一下
说了不懂的 我不懂改的
还有 我不要验证码

哪个版的防注入系统

以下代码去了

Function Encode(content)
dim tmp
tmp=content
tmp=replace(tmp,"<","<")
tmp=replace(tmp,">",">")
tmp=replace(tmp,"'","")
tmp=replace(tmp,"char(34)","")
Encode=tmp
End Function

function checkgetcode()
if logincode="yes" then
if CStr(Trim(Session("code")))<>CStr(Trim(Request.form("code"))) then
Session("code")=""
response.redirect("error.asp?action=back&text="&server.urlencode("对不起!请正确填写验证码!"))
Response.End
end if
end if
end function