gpt4 book ai didi

asp.net - FormsAuthentication - 处理用户名更改

转载 作者:行者123 更新时间:2023-12-02 09:08:28 25 4
gpt4 key购买 nike

我的 ASP.NET MVC Web 应用程序允许管理员更改自己或其他用户的用户名。

用户通过调用 FormsAuthentication.SetAuthCookie(userName [string], createPersistentCookie [bool]) 登录。他们通过调用 FormsAuthentication.SignOut() 注销。据我所知,更新用户名后,我需要将其注销并再次登录。但是如何检索 createPersistentCookie现有值?例如当他们重新登录时,如何保留他们原来的“记住我”设置?

最佳答案

var cookieName = FormsAuthentication.FormsCookieName;
var request = HttpContext.Current.Request;
var cookie = request.Cookies.Get(cookieName);
if (cookie == null)
return;

try
{
var ticket = FormsAuthentication.Decrypt(cookie.Value);

//This should give you what you want...
bool isPersistent = ticket.IsPersistent;
}
catch (Exception ex)
{
//Logging
}

关于asp.net - FormsAuthentication - 处理用户名更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6301342/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com