IT运维管理,创造商业价值!
中国IT运维网首页 | 资讯中心 | 运维管理 | 信息安全 | CIO视界 | 云计算 | 最佳案例 | 运维资源 | 专题策划 | 知识库 | 论坛

如何有效防止同一账户去重复登录系统

2007年03月21日
/

维护一Online表,查看有登录,就不允许再次登录,以Sessionid作为唯一标识符号,也可以产生一个GUID发到COOKIE中,以区分不同的CLIENT,再加上JS,可以达到更好的效果,比如离开后自动离线。

解决代码如下:

public virtual void Application_Start(object sender, EventArgs e) 
{ 
// reset the mailer indicator 
Application["MailerStatus"] = "All Mailings Complete"; 

// initialize a datatable for users online 
DataTable objUserTable = new DataTable(); 
objUserTable.Columns.Add("SessionID",System.Type.GetType("System.Guid")); 
objUserTable.Columns.Add("PeopleID",System.Type.GetType("System.Int32")); 
objUserTable.Columns.Add("ShowDetail",System.Type.GetType("System.Boolean")); 
DataColumn[] pk = new DataColumn[1]; 
pk[0] = objUserTable.Columns[0]; 
objUserTable.PrimaryKey = pk; 
Application["UserTable"] = objUserTable; 
} 

/**//// 
/// The Session_Start event adds user session information to 
/// Application["UserTable"]. 
/// 
public virtual void Session_Start(object sender, EventArgs e) 
{ 
Application.Lock(); 
//Application.Lock (); 
DataTable objUserTable = (DataTable)Application["UserTable"]; 
DataRow objRow = objUserTable.NewRow(); 
Guid objGuid = Guid.NewGuid(); 
objRow[0] = objGuid; 
Session["PfSessionID"] = objRow[0]; 
objRow[1] = 0; 
objRow[2] = false; 
objUserTable.Rows.Add(objRow); 
Application["UserTable"] = objUserTable; 
Application.UnLock(); 
} 


/**//// 
/// The Session_End event deletes user session information from 
/// Application["UserTable"]. 
/// 
public virtual void Session_End(object sender, EventArgs e) 
{ 
Application.Lock(); 
DataTable objUserTable = (DataTable)Application["UserTable"]; 
objUserTable.Rows.Find((Guid)Session["PfSessionID"]).Delete(); 
Application["UserTable"] = objUserTable; 
Application.UnLock(); 
}

发表评论请到:http://bbs.cnitom.com

相关阅读

图文热点

UTM安全革命:谁说鱼与熊掌不能兼得?
UTM安全革命:谁说鱼与熊掌不能兼得?随着市场和技术的发展,很多用户发现自己采购的UTM产品很象是瑞士军刀仅限于单功...
UTM革命:“一键配置”轻松搞定网关安全
UTM革命:“一键配置”轻松搞定网关安全发布时间:2009-9-14 15:09:33 UTM 革命:一键配置搞定网关安全 摘要:联想网御 P...

本类热点