1

The sign out is not working when using ASP.NET Identity 2.0. It works sometimes. We have to frequently hit the LogOff action twice for it to actually log off. Debugging locally works fine. It has the issue on the live servers. Any ideas? Here's our LogOff method:

[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult LogOff()
{
    AuthenticationManager.SignOut();
    return RedirectToAction("Index", "General");
}
Jason N. Gaylord
  • 7,910
  • 15
  • 56
  • 95
  • 1
    Possible duplicate of [ASP.Net MVC 5 w/identity 2.2.0 Log off not working](http://stackoverflow.com/questions/28642284/asp-net-mvc-5-w-identity-2-2-0-log-off-not-working). Try a solution from there. – Deilan Mar 11 '15 at 17:29
  • That was working, but has stopped. Someone from the team is investigating. – Jason N. Gaylord Mar 12 '15 at 00:31

0 Answers0