做了一个会员登陆系统
如何限同一用户同时在不同点登陆,如:用户Test已经登陆,则该用户无法在其它客户端再行登陆.
做了一个会员登陆系统
如何限同一用户同时在不同点登陆,如:用户Test已经登陆,则该用户无法在其它客户端再行登陆.
tbelin2000
这相我想过,正常退出我已经做过了,没有用数据库是在Global,asa中用全局变量,可是非正常退出怎么做啊?
谁能给出详细代码?谢谢
login.asp
-------------------------------
UserLoginID = rs("id") 'application("User"&UserLoginID&"")="" if application("User"&UserLoginID&"")="yes" then response.write"<SCRIPT language=JavaScript>alert('用户已经登陆!');" response.write"javascript:history.go(-1)</SCRIPT>" response.end else
Session("cndkzxUserFlag") = True Session("cndkzxUserID") = rs("id") Session("cndkzxUserType") = Rs("UserType") Session("LastInTime") = Rs("LastInTime") AppLication.Lock Application("User"&Session("cndkzxUserID")&"") = "yes" Application.UnLock end if
LogOut.asp
------------------------------------------
Application("User"&Session("cndkzxUserID")&"") = "No" Session("cndkzxUserType") = "" Session("cndkzxUserID") = "" Session("cndkzxUserFlag") = False response.Redirect("index.asp")
可是非正常退出呢?