ASP程序中同一个用户不允许同时登陆两次,ASP程序中同一个用户不允许同时登陆两次
【 tulaoshi.com - ASP 】
登陆页login.asp:
<%
if request.Form.count0 then
session("username")=request("username")
application(session("username"))=session.SessionID
response.Redirect("index.asp")
end if
%
<form method=post action=""
<input type="text" name="username"<input type="submit"
</form
其他需要认证的页面index.asp:
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/asp/)<%
if application(session("username"))=session.SessionID then
response.Write("已经登陆")
else
response.Write("没有登陆")
end if
%
来源:http://www.tulaoshi.com/n/20160129/1507241.html
看过《ASP程序中同一个用户不允许同时登陆两次》的人还看了以下文章 更多>>