您好,我是第一次在 MVC 中开发解决方案,所以我面临一个大问题,当我从我的应用程序(mvc razor Web 应用程序)注销时,它会显示登录页面,但如果我按下浏览器后退按钮,它会显示最后一个屏幕,我不'不想要这个,我想要如果我按下后退按钮它仍然显示相同的登录页面。这是我的注销代码
public ActionResult Logout()
{
Session.Clear();
Session.Abandon();
Session.RemoveAll();
FormsAuthentication.SignOut();
this.Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1));
this.Response.Cache.SetCacheability(HttpCacheability.NoCache);
this.Response.Cache.SetNoStore();
return RedirectToAction("Login");
}