子域 根域 Cookie的写入与清除

作者:互联网   出处:控件中国网   2014-11-05 19:05:24   阅读:0

子域 根域 Cookie的写入与清除
 
cookie的写入:

HttpCookie hc = new HttpCookie("username",uid.ToString());
hc.Expires = DateTime.Now.AddDays(1);
hc.Domain = "b.com";
HttpContext.Current.Response.Cookies.Add(hc);


 

此时是无法通过以下代码,直接清除的;

HttpContext.Current.Response.Cookies["username"].Expires = DateTime.Now.AddDays(-1);
最好将相应属性写完整,再进行清除:

 HttpCookie cookie = HttpContext.Current.Request.Cookies["username"];
 cookie.Expires = DateTime.Now.AddDays(-100);
 cookie.Domain = "b.com";
 HttpContext.Current.Response.Cookies.Add(cookie);

Copyright© 2006-2015 ComponentCN.com all rights reserved.重庆磐岩科技有限公司(控件中国网) 版权所有 渝ICP备12000264号 法律顾问:元炳律师事务所
客服软件
live chat