復制代碼 代碼如下:
Session.Abandon();
Response.Redirect("Login.aspx");
但是這樣點點擊浏覽器的後退仍然可以回到剛才的頁面,這可不行,在網上找了一下,也有不少人遇到這樣的問題,試了一些方法,都不管用。不過最後還是找到,共享一下。
http://blog.csdn.net/lhypang2006/archive/2008/03/11/2170751.aspx
復制代碼 代碼如下:
Session.Abandon();
Response.Write("<script>window.location.href='Login.aspx'</script>");
很簡單,就是把Response.Redirect改為Response.Write,輸出腳本,實現跳轉。
再共享一個,也是關於退出的。
妙用Asp.Net中的HttpHandler
上面的方法我覺得很好,寫一個類繼承IHttpHandler
復制代碼 代碼如下:
public class LogoutHttpHandler : IHttpHandler
{
/// <summary>
/// 通過實現 IHttpHandler 接口的自定義 HttpHandler 啟用 HTTP Web 請求的處理。
/// </summary>
/// <param name="context">HttpContext 對象,它提供對用於為 HTTP 請求提供服務的內部服務器對象(如 Request、Response、Session 和 Server)的引用。 </param>
public void ProcessRequest (HttpContext context)
{
FormsAuthentication.SignOut();
context.Response.Redirect("Login.aspx",true);
}
再修改web.config,在<system.web></system.web>中增加如下腳本:
復制代碼 代碼如下:
<httpHandlers>
<add verb="GET" path="Logout.aspx" type="LogoutHttpHandler" />
</httpHandlers>
文章中把類編譯成了dll,也可以只在App_Code中添加這樣的類就好了。
還有上面的ProcessRequest 並沒有清除Session。而且也是用Response.Redirect,點擊後退也是可以回到原來的頁面的。我改了一下
復制代碼 代碼如下:
public class LogoutHttpHandler : IHttpHandler, IRequiresSessionState
{
public void ProcessRequest(HttpContext context)
{
//FormsAuthentication.SignOut();//這樣可以不用
context.Session.Abandon();
context.Response.Write("<script>window.location.href='Login.aspx'</script>");
}
}
這樣不用再加一個頁面Logout.aspx,退出的代碼也簡單。
復制代碼 代碼如下:
protected void Exit_Click(object sender, EventArgs e)
{
Response.Redirect("Logout.aspx");
}