如何让同一个用户名在同一时间不能登录两个或更多?
这个问题非常的棘手,我做的小系统里面的同一个用户名竟然可以在两个IP上同时登录,这还了得,我在数据库的会员表里又加了个online字段,以此来判断该用户名是否已登录,而且还给了一个默认值false1,如果等于false1的话,证明没有登录,具体大家看看吧,反正总是不行,一直弹出的是该用户已登录.请高手指点一下,多谢了!我把比较关键的代码帖出来请大家帮忙看看:if rs("hy_close")=0 then
response.write "<script>alert('用户登录出错,下面是产生错误的可能原因:\n您注册的企业已被管理员关闭,如有问题请及时和我们联系');window.open('../index.asp','_self');</Script>"
Response.End
' response.write "update sc_hy set lasttim="&now()&" where hy_id="&rs("hy_id")
elseif rs("online")<>"false1" then
response.Write "<script>alert('该用户已登录!');history.go(-1);</script>"
response.End()
else
conn.execute("update sc_hy set online='true1',lasttime='"&now()&"',ip='"&userip&"' where hy_id='"&rs("hy_id")&"'")
end if