FormsAuthentication.SignOut() on server
- by RendeRR
FormsAuthentication.SignOut(), in so far as I understand it, just kills the cookie in your browser. Ie if cookie to save and after FormsAuthentication.SignOut () use again, the user is authenticated. How to kill a session on the server? Ie make any cookie does not valid?
I have ASP.NET MVC.
HttpContext.Session.Abandon() does not work.