10
我的ASP.NET MVC Web應用程序允許管理員更改他們自己的或其他用戶的用戶名。FormsAuthentication - 處理用戶名更改
用戶通過致電FormsAuthentication.SetAuthCookie(userName [string], createPersistentCookie [bool])
登錄。他們通過致電FormsAuthentication.SignOut()
註銷。我知道在更新用戶名後,我需要將它們簽出並重新登錄。但是,如何檢索createPersistentCookie
的現有的值?例如在簽名時如何保留原始的「記住我」設置?