文件名称:添加、修改、删除cookie
文件大小:18KB
文件格式:DOCX
更新时间:2015-09-05 12:58:19
添加 修改 删除 cookie.
添加、修改、删除cookie.
public class Cookie
{
/// Cookie ck = new Cookie();
/// ck.setCookie("主键","键值","天数");
public bool setCookie(string strName, string strValue, int strDay)
{
try
{
HttpCookie Cookie = new HttpCookie(strName);
Cookie.Expires = DateTime.Now.AddDays(strDay);
Cookie.Value = strValue;
System.Web.HttpContext.Current.Response.Cookies.Add(Cookie);
return true;
}
catch
{
return false;
}
}