首页 相关文章 ASP程序中同一个用户不允许同时登陆两次

ASP程序中同一个用户不允许同时登陆两次

登陆页login.asp:

<%
if request.Form.count0 then
session("username")=request("username")
application(session("username"))=session.SessionID
response.Redirect("index.asp")
end if
%

其他需要认证的页面index.asp:

<%
if application(session("username"))=session.SessionID then
response.Write("已经登陆")
else
response.Write("没有登陆")
end if
%

...[ 查看全文 ]

2016-01-29 标签:

ASP程序中同一个用户不允许同时登陆两次的相关文章

手机页面
收藏网站 回到头部