1
我在我的代碼有HttpContext.Current.Session["CurrentUser"] = user;
的地方,並在註銷我有這個當AuthenticationManager.SignOut(DefaultAuthenticationTypes.ApplicationCookie); HttpContext.Current.Session被破壞時。
public ActionResult LogOff()
{
AuthenticationManager.SignOut(DefaultAuthenticationTypes.ApplicationCookie);
return RedirectToAction("Index", "Home");
}
我只是想確保當我註銷HttpContext.Current.Session
也destoyed。如果不是那麼它如何摧毀它?
[MSDN](https://msdn.microsoft.com/en-us/library/ms178581.aspx)建議呼叫會話放棄'()'後註銷。請參閱鏈接中的第三個註釋。 –