Logout issue with browser back button

前端 未结 3 867
难免孤独
难免孤独 2021-01-16 11:30

I have created Login/ Logout functionality using ASP.Net MVC 4. I used my own created form for authenticate users against Active Directory. It is working fine with the funct

相关标签:
3条回答
  • 2021-01-16 12:04

    I've only used SetExpires with DateTime.Now that would match you local server time to the cookie. Using DateTime.UtcNow.Addminutes(-1) could be the real culprit here.

    Also, if your are using forms authentication, I don't see your call to

    FormsAuthentication.SignOut();
    
    0 讨论(0)
  • 2021-01-16 12:04

    Adding the following attribute to any ActionResult methods which return secure pages in your controller(s) should work:

    public class MyControllerForAuthorizedStuff
    {
        [OutputCache(NoStore = true, Duration = 0, Location = OutputCacheLocation.None)]
        public ActionResult Index()
        {
            return View();
        }
    } 
    
    0 讨论(0)
  • 2021-01-16 12:10

    add the following code in your global.asax page and remove first 3 lines from your logout() function.

    protected void Application_BeginRequest()
    {
        Response.Cache.SetCacheability(HttpCacheability.NoCache);
        Response.Cache.SetExpires(DateTime.UtcNow.AddHours(-1));
        Response.Cache.SetNoStore();
    }
    
    0 讨论(0)
提交回复
热议问题