博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#中使用cookies
阅读量:5998 次
发布时间:2019-06-20

本文共 1760 字,大约阅读时间需要 5 分钟。

添加cookies

protected void Button1_Click(object sender, EventArgs e)

  {
    HttpCookie cookie=new HttpCookie("MyCook");//初使化并设置Cookie的名称
    DateTime dt=DateTime.Now;
    TimeSpan ts = new TimeSpan(0, 0, 1,0,0);//过期时间为1分钟
    cookie.Expires = dt.Add(ts);//设置过期时间
    cookie.Values.Add("userid", "userid_value");
    cookie.Values.Add("userid2","userid2_value2");
    Response.AppendCookie(cookie);
    //输出该Cookie的所有内容
    //Response.Write(cookie.Value);//输出为:userid=userid_value&userid2=userid2_value2
  }

  //读取

  protected void Button2_Click(object sender, EventArgs e)
  {

    // HttpCookie cokie = new HttpCookie("MyCook");//初使化

    if (Request.Cookies["MyCook"]!=null)
    {
      //Response.Write("Cookie中键值为userid的值:" + Request.Cookies["MyCook"]["userid"]);//整行
      //Response.Write("Cookie中键值为userid2的值" + Request.Cookies["MyCook"]["userid2"]);
      Response.Write(Request.Cookies["MyCook"].Value);//输出全部的值
    }
  }

  //修改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);
    }     
  }

  //删除Cookie

  protected void Button4_Click(object sender, EventArgs e)
  {

    HttpCookie cok = Request.Cookies["MyCook"];

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

转载地址:http://lawmx.baihongyu.com/

你可能感兴趣的文章
前端工程化概述
查看>>
奇淫怪巧之在Delphi中调用不申明函数
查看>>
人工智能,科技大咖眼中的未来趋势
查看>>
Fresco的使用及注意事项
查看>>
Trap mouse events outside of my application
查看>>
关于刷Sylvain/burst_ind分支的一些问题解答
查看>>
VMware vSphere Client无法连接ESXi虚拟主机解决的方法
查看>>
ctime、mtime、atime
查看>>
Nagios监控HP硬件状态
查看>>
wincp连接linux异常关闭
查看>>
LVS原理详解及部署之二:LVS原理详解(3种工作方式8种调度算法)
查看>>
nginx防盗链和内核参数优化
查看>>
/bin,/sbin,/usr/sbin,/usr/bin 目录
查看>>
请不要做浮躁的IT人
查看>>
CentOS中SELinux简单介绍
查看>>
自动化运维工具
查看>>
find
查看>>
jQuery从无知到无所不知
查看>>
软raid-mdadm命令
查看>>
Nginx自学手册(四)反向代理和缓存
查看>>