ユーザーがログアウトするときにユーザーをログインページにリダイレクトしますが、ユーザーが再びログインしたときにすべてのデータが保持されるため、アプリケーションまたはセッションがクリアされるとは思わない。
現在、ログインページにはログインコントロールがあり、ページ上のコードビハインドはログイン認証のみに関連付けられています。
ASP.NET Webサイトへのログインとログアウトの処理に関する優れたチュートリアルまたは記事に誰かを誘導できますか?
Session.Abandon()
http://msdn.Microsoft.com/en-us/library/ms524310.aspx
HttpSessionState
オブジェクトの詳細を次に示します。
http://msdn.Microsoft.com/en-us/library/system.web.sessionstate.httpsessionstate_members.aspx
次を使用してセッションをクリアし、aspnet_sessionID
をクリアします。
HttpContext.Current.Session.Clear();
HttpContext.Current.Session.Abandon();
HttpContext.Current.Response.Cookies.Add(new HttpCookie("ASP.NET_SessionId", ""));
私はSession.Abandon()
を好むでしょう
Session.Clear()
はEndを起動させず、クライアントからのさらなるリクエストはSession Startイベントを発生させません。
Session.Abandon()
はセッションを破棄し、_Session_OnEnd
_イベントがトリガーされます。
Session.Clear()
は、オブジェクトからすべての値(コンテンツ)を削除するだけです。 _session with the same key
_はまだalive
です。
したがって、Session.Abandon()
を使用すると、その特定のセッションが失われ、ユーザーは_new session key
_を取得します。たとえば、ユーザー_logs out
_の場合に使用できます。
ユーザーを同じセッションに残したい場合(たとえば、ユーザーに再ログインさせたくない場合)にSession.Clear()
を使用し、セッション固有のデータをすべてリセットします。
プロジェクトのファイルGlobal.asax.csに移動し、次のコードを追加します。
protected void Application_BeginRequest()
{
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetExpires(DateTime.Now.AddHours(-1));
Response.Cache.SetNoStore();
}
それは私のために働いた..!参照リンク ログアウトMVC 4のセッションをクリア
セッションをクリアする方法は、.NETコアでは少し異なります。 Abandon()
関数はありません。
ASP.NET Core 1.0以降
//Removes all entries from the current session, if any. The session cookie is not removed.
HttpContext.Session.Clear()
。NET Framework 4.5以降
//Removes all keys and values from the session-state collection.
HttpContext.Current.Session.Clear();
//Cancels the current session.
HttpContext.Current.Session.Abandon();
<script runat="server">
protected void Page_Load(object sender, System.EventArgs e) {
Session["FavoriteSoftware"] = "Adobe ColdFusion";
Label1.Text = "Session read...<br />";
Label1.Text += "Favorite Software : " + Session["FavoriteSoftware"];
Label1.Text += "<br />SessionID : " + Session.SessionID;
Label1.Text += "<br> Now clear the current session data.";
Session.Clear();
Label1.Text += "<br /><br />SessionID : " + Session.SessionID;
Label1.Text += "<br />Favorite Software[after clear]: " + Session["FavoriteSoftware"];
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>asp.net session Clear example: how to clear the current session data (remove all the session items)</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:Teal">asp.net session example: Session Clear</h2>
<asp:Label
ID="Label1"
runat="server"
Font-Size="Large"
ForeColor="DarkMagenta"
>
</asp:Label>
</div>
</form>
</body>
</html>
session.abandon()はブラウザからsessionID Cookieを削除しません。したがって、これ以降の新しいリクエストは同じセッションIDを取得します。したがって、Response.Cookies.Add(new HttpCookie( "ASP.NET_SessionId"、 ""));を使用します。 session.abandon()の後。
Session.Clear();