asp.net-mvc – 注销后,如果浏览器返回按钮,那么它返回最后一个屏幕

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 注销后,如果浏览器返回按钮,那么它返回最后一个屏幕前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你好,我在第一时间开发一个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");
    }

解决方法

之前我有这个问题,为整个应用程序禁用缓存解决了我的问题,只需将这些行添加到Global.asax.cs文件
protected void Application_BeginRequest()
        {
            Response.Cache.SetCacheability(HttpCacheability.NoCache);
            Response.Cache.SetExpires(DateTime.UtcNow.AddHours(-1));
            Response.Cache.SetNoStore();
        }

希望这可以帮助.

原文链接:https://www.f2er.com/aspnet/249887.html

猜你在找的asp.Net相关文章