还是VB函数问题
我想通过IP限制别人对我的网站,密码的多次输入进行限制,大家帮我看看哪里错了Function ErrRecord(WrongIp)
sql="Select ErrIp from ErrUser where ErrIp="&WrongIp
set rs=conn.execute(sql)
if rs.eof then
sqln="update ErrUser set ErrNum=ErrNum+1"
conn.execute(sqln)
else
addsql="insert into ErrUser(ErrIp,ErrNum) values('"&WrongIp&"',"+0+")"
rs.open addsql,conn,1,3
ErrNum=rs("ErrNum")
rs.close
End if
ErrRecord=ErrNum
End Function
ErrIp=Request.ServerVariables("REMOTE_ADDR")
Call ErrRecord(ErrIp)
if ErrRecord>5 then
response.write "<script>alert('用户名或者密码错误!!');window.location='Error.htm';</script>"
else
Response.Write ErrRecord
end if
函数根本没返回,也不能对数据库进行操作
[此贴子已经被作者于2005-12-9 17:29:52编辑过]