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
I solve it by deleting the caches and cookies in browser.