在ASP.NET 中实现单点登录

**在ASP.NET 中实现单点登录
**
出自:【孟宪会之精彩世界】 发布日期:2005年1月27日 8点48分0秒

由于某些原因,在我们的应用中会遇到一个用户只能在一个地方登录的情况,也就是我们通常所说的单点登录。在ASP.NET中实现单点登录其实很简单,下面就把主要的方法和全部代码进行分析。

实现思路

利用Cache的功能,我们把用户的登录信息保存在Cache中,并设置过期时间为Session失效的时间,因此,一旦Session失效,我们的Cache也过期;而Cache对所有的用户都可以访问,因此,用它保存用户信息比数据库来得方便。

查看示例

SingleLogin.aspx代码

1@ Page language="c#" Codebehind="SingleLogin.aspx.cs" AutoEventWireup="false"   
2Inherits="eMeng.Exam.SingleLogin" 
 1<html>
 2<head>
 3<title>单点登录测试</title>
 4<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
 5<meta content=" 孟子E章 " http-equiv="Author"/>
 6<meta content=" http://dotnet.aspx.cc/ " http-equiv="WebSite"/>
 7<style>   
 8H3 { FONT: 17px 宋体 }   
 9INPUT { FONT: 12px 宋体 }   
10SPAN { FONT: 12px 宋体 }   
11P { FONT: 12px 宋体 }   
12H4 { FONT: 12px 宋体 }   
13</style>
14</head>
15<body ms_positioning="GridLayout">
16<form id="Form1" method="post" runat="server">
17<div align="center">
18<h3>单点登录测试</h3>
19<p>用户名称:<asp:textbox id="UserName" runat="server"></asp:textbox></p>
20<p>用户密码:<asp:textbox id="PassWord" runat="server" textmode="Password"></asp:textbox></p>
21<p><asp:button id="Login" runat="server" text=" 登 录 "></asp:button></p>
22<p><asp:label id="Msg" runat="server"></asp:label></p>
23</div>
24</form>
25</body>
26</html>

SingleLogin.aspx.cs代码

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace eMeng.Exam
{
///

1<summary>   
2/// SingleLogin 的摘要说明。   
3/// 实现单点登录   
4/// </summary>

public class SingleLogin : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox UserName;
protected System.Web.UI.WebControls.TextBox PassWord;
protected System.Web.UI.WebControls.Label Msg;
protected System.Web.UI.WebControls.Button Login;

private void Page_Load(object sender, System.EventArgs e)
{
// 实际例子可访问:
// http://dotnet.aspx.cc/Exam/SingleLogin.aspx
}

#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
InitializeComponent();
base.OnInit(e);
}

///

1<summary>   
2/// 设计器支持所需的方法 - 不要使用代码编辑器修改   
3/// 此方法的内容。   
4/// </summary>

private void InitializeComponent()
{
this.Login.Click += new System.EventHandler(this.Login_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion

private void Login_Click(object sender, System.EventArgs e)
{
// 作为唯一标识的Key,应该是唯一的,这可根据需要自己设定规则。
// 做为测试,这里用用户名和密码的组合来做标识;也不进行其它的错误检查。

// 生成Key
string sKey = UserName.Text + "_" + PassWord.Text;
// 得到Cache中的给定Key的值
string sUser = Convert.ToString(Cache[sKey]);
// 检查是否存在
if (sUser == null || sUser == String.Empty)
{
// Cache中没有该Key的项目,表名用户没有登录,或者已经登录超时
// 注意下面使用的TimeSpan构造函数重载版本的方法,是进行是否登录判断的关键。
TimeSpan SessTimeOut = new TimeSpan(0,0,System.Web.HttpContext.Current.Session.Timeout,0,0);
HttpContext.Current.Cache.Insert(sKey,sKey,null,DateTime.MaxValue,SessTimeOut,
System.Web.Caching.CacheItemPriority.NotRemovable,null);
Session["User"] = sKey;
// 首次登录,您可以做您想做的工作了。
Msg.Text="

1<h4 style="color:red">嗨!欢迎您访问<a href="http://dotnet.aspx.cc/">【孟宪会之精彩世界】";   
2Msg.Text += "</a>,祝您浏览愉快!:)</h4>

";
}
else
{
// 在 Cache 中发现该用户的记录,表名已经登录过,禁止再次登录
Msg.Text="

1<h4 style="color:red">抱歉,您好像已经登录了呀:-(</h4>

";
return;
}
}
}
}

Published At
Categories with Web编程
Tagged with
comments powered by Disqus