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
you must set FormsAuthentication.SetAuthCookie(acct.UserName, true); after validating user and please check you must set authentication mode="Forms" in web.config.
FormsAuthentication.SetAuthCookie(acct.UserName, true);
authentication mode="Forms"