首页 > 代码库 > cookies&Session操作

cookies&Session操作

HttpCookie cookie = HttpContext.Current.Request.Cookies["__shareuser"] ?? new HttpCookie("__shareuser");

//检查是否存在 __shareuser Cookie如果不存在 ,新增一个
cookie.Value = http://www.mamicode.com/(userInfo.Id + Key + DateTime.Now.AddDays(1)).Encryption();

//将Id,Key,以前失效时间加密,做为Cookie的值
  cookie.Expires = DateTime.Now.AddYears(1);

//失效时间为:当前日期+1年
 HttpContext.Current.Response.AppendCookie(cookie);

//添加Cookie
HttpContext.Current.Session["__shareuser"] = userInfo.Id;

Session赋值

cookies&Session操作