动态页面ASP登陆代码
发布网友
发布时间:2023-03-14 20:31
我来回答
共3个回答
热心网友
时间:2023-10-24 05:06
用session记录IP地址和次数,当用户关闭网页时,session也就清除了,高明的办法是用户每输入一次错误记录则自动在数据库中记录一次它的IP和当天的日期,当当天同一IP错误次数超过三次时,则对于该IP将不再验证,直接跳转至首页..
热心网友
时间:2023-10-24 05:06
用session记录IP地址和次数
热心网友
时间:2023-10-24 05:06
<!--#include file="conn.asp" -->
<%
dim username,password
username=request.Form("username")
password=request.Form("password")
sql="select * from admin where username='"&username&"'and password='"&password&"'"
set rs=conn.execute(sql)
if not(rs.eof and rs.bof) then
session("user")=username
response.Redirect("yonghu.asp")
else
response.Redirect("shi.asp")
end if
conn.close
set conn=nothing
%>
用session记录IP地址和次数