同じユーザーによる複数のログインを防止するアプリケーションがあります。ユーザーが別の Web ページ/マシンからログインしようとすると (既に別の Web ページにログインしている場合)、前のセッションをログアウトする必要があるかどうかを確認するボックスが表示されます。 「はい」をクリックすると、以前のセッションはログオフされます。以前のセッションをログアウトできませんが、コードが複数のログインを妨げていますが、以前のセッションをログオフして、現在のセッションでユーザーをメインページにリダイレクトするにはどうすればよいですか
loginButton_Clickのコードは次のとおりです(認証後)
string sKey = loginControl.UserName + loginControl.Password;
string sUser = Convert.ToString(Cache[sKey]);
if (sUser == null || sUser == String.Empty || sUser == "")
{
TimeSpan SessTimeOut = new TimeSpan(0, 0, HttpContext.Current.Session.Timeout, 0, 0);
HttpContext.Current.Cache.Insert(sKey, sKey, null, DateTime.MaxValue, SessTimeOut, System.Web.Caching.CacheItemPriority.NotRemovable, null);
Session["user"] = loginControl.UserName + loginControl.Password;
Response.Redirect("MainPage.aspx");
}
else
{
Response.Write("<script>if(window.confirm('You have already Logged In.Do you want to sign off the previous Session?')){} else{window.location.href='login.aspx'}</script>");
//if part
return;
}
Global.asax ページ内
protected void Application_PreRequestHandlerExecute(Object sender, EventArgs e)
{
if (System.Web.HttpContext.Current.Session != null)
{
if (Session["user"] != null)
{
string sKey = (string)Session["user"];
string sUser = (string)HttpContext.Current.Cache[sKey];
}
else
{
foreach (DictionaryEntry de in HttpContext.Current.Cache)
{
HttpContext.Current.Cache.Remove((string)de.Key);
}
}
}
}