这是我的注销操作:
public ActionResult Logout()
{
FormsAuthentication.SignOut();
Session.Clear();
Response.Cache.SetExpires(DateTime.Now.AddSeconds(-1));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();
Session.Abandon();
return RedirectToAction("Logpage", "Home");
}
它可以工作,但唯一的问题是Goback
导航器中的注销按钮仍然有效并且它允许在注销前返回到最后一页