After logout if browser back button press then it go back last screen

前端 未结 6 1790
执念已碎
执念已碎 2020-12-13 09:58

Hello I am developing a solution in MVC in first time so I am facing a big issue, When I logout from my application(mvc razor web application) it displays login page, but if

6条回答
  •  长情又很酷
    2020-12-13 10:21

    I had this problem a while ago, disabling the cache for the entire application solved my problem, just add these line to the Global.asax.cs file

            protected void Application_BeginRequest()
            {
                Response.Cache.SetCacheability(HttpCacheability.NoCache);
                Response.Cache.SetExpires(DateTime.UtcNow.AddHours(-1));
                Response.Cache.SetNoStore();
            }
    

    Hope this helps.

提交回复
热议问题