当用户单击注销时,我将用户重定向到登录页面,但是我认为它不会清除任何应用程序或会话,因为当用户重新登录时所有数据都会保留。
目前登录页面有一个登录控件,页面后面的代码只是连接登录验证。
有人可以指导我阅读有关处理登录和退出 ASP.NET 网站的好教程或文章吗?
当用户单击注销时,我将用户重定向到登录页面,但是我认为它不会清除任何应用程序或会话,因为当用户重新登录时所有数据都会保留。
目前登录页面有一个登录控件,页面后面的代码只是连接登录验证。
有人可以指导我阅读有关处理登录和退出 ASP.NET 网站的好教程或文章吗?
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()
,如果您希望用户留在同一会话中(例如,如果您不希望他重新登录)并重置他的所有会话特定数据。
对于 .NET Core,清除会话的方式略有不同。没有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() 之后。
会话.清除();
转到项目中的文件Global.asax.cs并添加以下代码。
protected void Application_BeginRequest()
{
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetExpires(DateTime.Now.AddHours(-1));
Response.Cache.SetNoStore();
}
它对我有用..!参考链接 Clear session on Logout MVC 4