如標題
FormsAuthentication.SignOut();
//清除所有的 session
Session.RemoveAll();
//建立一個同名的 Cookie 來覆蓋原本的 Cookie
HttpCookie cookie1 = new HttpCookie(FormsAuthentication.FormsCookieName, "");
cookie1.Expires = DateTime.Now.AddYears(-1);
Response.Cookies.Add(cookie1);
//建立 ASP.NET 的 Session Cookie 同樣是為了覆蓋
//HttpCookie cookie2 = new HttpCookie("ASP.NET_SessionId", "");
//cookie2.Expires = DateTime.Now.AddYears(-1);
//Response.Cookies.Add(cookie2);
Response.Redirect("Login.aspx");
自己得寫法是...習慣有一隻logout.aspx處理這件事情....
以上文章僅用紀錄資料使用.....