码迷,mamicode.com
首页 > Windows程序 > 详细

C#操作cookie

时间:2014-11-06 14:40:56      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   sp   div   on   log   bs   

创建Cookie

                   HttpCookie cookie = new HttpCookie("MyCook");//初使化并设置Cookie的名称
                    DateTime dt = DateTime.Now;
                    TimeSpan ts = new TimeSpan(1, 0, 0, 0, 0);//过期时间为1天
                    cookie.Expires = dt.Add(ts);//设置过期时间
                    cookie.Values.Add("uid", uid);  //添加cookie
                    Response.AppendCookie(cookie);

读取Cookie

         if (Request.Cookies["MyCook"] != null)
            {
                ViewData["Uid"] = Request.Cookies["MyCook"]["uid"]; //输出cookie
            }

修改Cookie

 //获取客户端的Cookie对象
    HttpCookie cookie= Request.Cookies["MyCook"];
        
    if (cookie!= null)
    {
      //修改Cookie的两种方法
      cookie.Values["uid"] = "134626655";
      cookie.Values.Set("userid", "134626655");

      //往Cookie里加入新的内容
      cookie.Values.Set("newid", "newValue");
      Response.AppendCookie(cookie);
    }      

删除Cookie

HttpCookie cookie= Request.Cookies["MyCook"];
    if (cookie!= null)
    {
      if (!CheckBox1.Checked)
      {
        cookie.Values.Remove("uid");//移除键值为uid的值
      }
      else
      {
        TimeSpan ts = new TimeSpan(-1, 0, 0, 0);
        cookie.Expires = DateTime.Now.Add(ts);//删除整个Cookie,只要把过期时间设置为现在
      }
      Response.AppendCookie(cookie);
    }

设置Cookie过期的时间的TimeSpan

[Serializable]
public TimeSpan(
   int days,
   int hours,
   int minutes,
   int seconds
);

 

C#操作cookie

标签:style   blog   http   color   sp   div   on   log   bs   

原文地址:http://www.cnblogs.com/llxy/p/4078563.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!