.NET通过Hashtable防用户重复登录的方法

实现思路:

   用户登录成功后,将用户登录信息存放到Hashtable类型的Application["Online"]里面,其键值为SessionID,其Value值为用户ID;当用户注销时,调用Session.Abandon;在Global.asax里面的SessionEnd事件中,将用户ID从Hashtable中删除;在用户访问页面时,察看Hashtable中是否有对应的用户ID如果没有则判断用户不在线(用户不在线的原因可能是按了注销按钮、网页超时等)

  1、公用类中判断用户是否在线的函数(供用户调用)

ContractedBlock.gif ExpandedBlockStart.gif 代码
 
   
1 /**/ /// <summary>

  
2 /// 判断用户strUserID是否包含在Hashtable h中

  
3 /// </summary>

  
4 /// <param name="strUserID"></param>

  
5 /// <param name="h"></param>

  
6 /// <returns></returns>

   7
public static bool AmIOnline( string strUserID, Hashtable h)

  
8 {

  
9 if (strUserID == null )

  
10 return false ;

  
11

  
12 // 继续判断是否该用户已经登陆

  
13 if (h == null )

  
14 return false ;

  
15

  
16 // 判断哈希表中是否有该用户

  
17 IDictionaryEnumerator e1 = h.GetEnumerator();

  
18 bool flag = false ;

  
19 while (e1.MoveNext())

  
20 {

  
21 if (e1.Value.ToString().CompareTo(strUserID) == 0 )

  
22 {

  
23 flag = true ;

  
24 break ;

  
25 }

  
26 }

  
27 return flag;

  
28 }

 

 

2、用户登录事件处理:

 

ContractedBlock.gif ExpandedBlockStart.gif 代码
 
   
private void btnlogin_Click( object sender, System.Web.UI.ImageClickEventArgs e)

  {

  
// User为自定义的类,其中包含Login方法

   User CurUser
= new User();

   CurUser.UserID
= this .username.Text.Trim();

  
if (MyUtility.AmIOnline(CurUser.UserID, (Hashtable) Application[ " Online " ]))

   {

   JScript.Alert(
" 您所使用的登录ID已经在线了!您不能重复登录! " );

  
return ;

   }

   CurUser.LoginPsw
= FormsAuthentication.HashPasswordForStoringInConfigFile( this .password.Text.Trim(), " SHA1 " );

  
int ii = CurUser.Login();

   StringBuilder sbPmt
= new StringBuilder();

  
switch (ii)

   {

  
case 0 : // 如果登录成功,则将UserID加入Application["Online"]中

   Hashtable h
= (Hashtable) Application[ " Online " ];

  
if (h == null )

   h
= new Hashtable();

   h[Session.SessionID]
= CurUser.UserID;

   Application[
" Online " ] = h;

   Session[
" UserID " ] = CurUser.UserID;

   Session[
" UserNM " ] = CurUser.UserNM;

   Session[
" RoleMap " ] = CurUser.RoleMap;

   Session[
" LoginPsw " ] = CurUser.LoginPsw;

   Session[
" LoginTime " ] = DateTime.Now;

   Response.Redirect(
" ChooseRole.aspx " );

  
break ;

  
case - 1 :

   JScript.Alert(
" 用户名错误! " );

  
break ;

  
case - 2 :

   JScript.Alert(
" 密码错误! " );

  
break ;

  
default :

   sbPmt.Append(
" 登录过程中发生未知错误! " );

   JScript.Alert(sbPmt.ToString());

  
break ;

   }

  
return ;

  }

 3、在Global.asax中的Session_End事件:

 

ContractedBlock.gif ExpandedBlockStart.gif 代码
 
   
  protected void Session_End(Object sender, EventArgs e)

  {

   Hashtable h
= (Hashtable) Application[ " Online " ];

  
if (h[Session.SessionID] != null )

   h.Remove(Session.SessionID);

   Application[
" Online " ] = h;

  }

 

4、在每一个页面需要刷新的地方,调用如下代码:

 

ContractedBlock.gif ExpandedBlockStart.gif 代码
 
   
  try

  {

  
if ( ! common.MyUtility.AmIOnline(Session[ " UserID " ].ToString(), (Hashtable) Application[ " OnLine " ]))

   {

  
// 用户没有在线 ,转到登录界面

   Response.Write(
" <script>parent.document.location.href='Login.aspx';</script> " ); /// /有框架时用

  
// Response.Redirect("login.aspx"); 无框架时用

  
return ;

   }

  }

  
catch

  {

  
// 会话过期 ,转到登录界面

   Response.Write(
" <script>parent.document.location.href='Login.aspx';</script> " ); /// /有框架时所用

  
// Response.Redirect("login.aspx"); 无框架时用

  
return ;

  }

深入思考:

   由本例的解决方法可以加以延伸,比如,在存储UserID的时候,将UserID+客户端IP地址一起存进去,则在将相应信息取出来分析的时候,可以做到:当用户在不同的计算机上先后登录的时候,则允许最近一次的登录,而将之前的登录删除!等等。

转载于:https://www.cnblogs.com/08netsx/archive/2010/08/23/1806782.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值