I am trying to implement Logout Functionality in ASP.NET MVC.
I use Forms Authentication for my project.
This is my Logout code:
FormsAuthen
That's strange... I make one single call to: FormsAuthentication.SignOut(); and it works...
public ActionResult Logout() { FormsAuthentication.SignOut(); return Redirect("~/"); }