When someone logs into my application and they checked the Remember Me checkbox, I set createPersistentCookie = trueit so that when they return, they don’t need to log in again. However, sometimes, I need to use it FormsAuthentication.SetAuthCookie(NewUserName, [true/false]), since I know if they initially set the value createPersistentCookieto true or not, so can I keep it the same as when I logged in?
source
share