添加COOKIE
Posted bwdblogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了添加COOKIE相关的知识,希望对你有一定的参考价值。
HttpCookie userinfoCookie = new HttpCookie("userinfo");
JObject o = new JObject();//JObject是Newtonsoft.Json.Linq中的对象
o["userid"] = userDB.UserID.ToString();
o["nickname"] = userDB.NickName;
o["avatar"] = userDB.ImageUrl;
userinfoCookie.Value = o.ToString();
Response.Cookies.Add(userinfoCookie);
以上是关于添加COOKIE的主要内容,如果未能解决你的问题,请参考以下文章
response.addCookie(cookie)添加cookie失败.
js操作cookie 添加,获取,删除,分别有啥参数,且各个参数代表啥。特别是添加cookie的时候。