Can you tell me why FormsAuthentication.SetAuthCookie(user.Name, false); is not causing Request.IsAuthenticated to be true?
FormsAuthentication.SetAuthCookie(user.Name, false);
Request.IsAuthenticated
Here is my code
In my case, it was a problem in Chrome browser. I just removed all cookies stored and works.