'Log user in
FormsAuthentication.SetAuthCookie(_user, False)
Response.Write(Request.IsAuthenticated)
I'm using the simple code above as an attempt to troubleshoot my issues. When I run the code it returns false. But when I refresh the page, the page acts as if the user is authenticated. Am I using Request.IsAuthenticated incorrectly?
...
Go to the complete details ...