c# – 如何在FormsAuthentication cookie中存储其他数据?

前端之家收集整理的这篇文章主要介绍了c# – 如何在FormsAuthentication cookie中存储其他数据?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在从网址中检索租户名称.我更喜欢只做一次,将它存储在cookie中,并在新页面请求中需要时从那里检索它.

我使用下面的代码来“创建”一个cookie.我希望界面允许我存储其他信息,但事实并非如此.有没有办法做到这一点,还是我走错了路?

public void SignIn(string userName,bool createPersistentCookie)
    {
        if (String.IsNullOrEmpty(userName))
            throw new ArgumentException("Value cannot be null or empty.","userName");

        FormsAuthentication.SetAuthCookie(userName,createPersistentCookie);
    }

提前致谢.

解决方法

就个人而言,我不会尝试改变Auth Cookie.而是创建一个新的cookie:
var myCookie = new HttpCookie("myCookie");//instantiate an new cookie and give it a name
myCookie.Values.Add("TenantName","myTenantName");//populate it with key,value pairs
Response.Cookies.Add(myCookie);//add it to the client

然后你可以像这样读取写在cookie上的值

var cookie = Request.Cookies["myCookie"];
var tenantName = cookie.Values["TenantName"].ToString();
//tenantName = "myTenantName"
原文链接:https://www.f2er.com/csharp/98967.html

猜你在找的C#相关文章