我使用下面的代码来“创建”一个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 namemycookie.Values.Add("Tenantname","myTenantname");//populate it with key,value pairsResponse.cookies.Add(mycookie);//add it to the clIEnt
然后你可以像这样读取写在cookie上的值
var cookie = Request.cookies["mycookie"];var tenantname = cookie.Values["Tenantname"].ToString();//tenantname = "myTenantname"总结
以上是内存溢出为你收集整理的c# – 如何在FormsAuthentication cookie中存储其他数据?全部内容,希望文章能够帮你解决c# – 如何在FormsAuthentication cookie中存储其他数据?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)