请问该怎样修改cookies 中的值 C#?
4 回答
慕森卡
TA贡献1806条经验 获得超8个赞
//修改Cookie案例:
protected void Button3_Click(object sender, EventArgs e)
{
//获取客户端的Cookie对象
HttpCookie cok = Request.Cookies["MyCook"];
if (cok != null)
{
//修改Cookie的两种方法
cok.Values["userid"] = "alter-value";
cok.Values.Set("userid", "alter-value");
//往Cookie里加入新的内容
cok.Values.Set("newid", "newValue");
Response.AppendCookie(cok);
}
}
撒科打诨
TA贡献1934条经验 获得超2个赞
Response.Cookies["xxx"].Value = "值";
读取的时候最好是:
string abc="";
if(Request.Cookies["xxx"]!=null) //注意:这里不用Value
{
abc=Request.Cookies["xxx"].Value;
}
- 4 回答
- 0 关注
- 436 浏览
添加回答
举报
0/150
提交
取消