• Asp.Net :写入 、读取 、 删除、追加cookie数组?



    //-----------------------------载入
    if(!IsPostBack)
            {


                HttpCookie cookie = Request.Cookies["userinfo1"];
                cookie.Expires = System.DateTime.Now.AddMinutes(20);//设置过期时间
                for (int i = 0; i < 5; i++)
                {
                    cookie.Values["BB" + i.ToString()] = i.ToString();
                    Response.Cookies.Add(cookie);
                }
               
       }



    //**************写入
           HttpCookie cookie = new HttpCookie("userinfo1");
            cookie.Expires = System.DateTime.Now.AddMinutes(20);//设置过期时间
            for (int i = 0; i < 10; i++)
            {
               
                cookie.Values["U" +i.ToString()] = i.ToString();          
                Response.Cookies.Add(cookie);
            }


    //**************---------------读取
            //读取 Cookie 集合
            for (int i = 0; i < Request.Cookies.Count; i++)
            {
                if (Request.Cookies.AllKeys[i] == "userinfo1")
                {

                    HttpCookie cookies = Request.Cookies["userInfo1"];
                    Response.Write("name=" + cookies.Name + "<br/>");
                    //Response.Write("name=" + cookies.Value + "<br/>");

                    if (cookies.HasKeys)//是否有子键
                    {
                        System.Collections.Specialized.NameValueCollection NameColl = cookies.Values;
                        for (int j = 0; j < NameColl.Count; j++)
                        {
                           
                            Response.Write("子键名=" + NameColl.AllKeys[j] + "<br/>");
                            Response.Write("子键值=" + NameColl[j] + "<br/>");
                        }

                    }
                    else
                    {
                        Response.Write("value=" + cookies.Value + "<br/>");
                    }
                }
             
            }


    //***********************删除
    HttpCookie acookie = Request.Cookies["userinfo1"];
            acookie.Expires = System.DateTime.Now.AddMinutes(20);//设置过期时间      
            if (acookie.HasKeys)//是否有子键
            {
                System.Collections.Specialized.NameValueCollection NameColl = acookie.Values; 
                for (int j = 0 ; j < NameColl.Count; j++)
                {               
                    if (NameColl.AllKeys[j] == "U8")
                    {
                        acookie.Values.Remove(NameColl.AllKeys[j]);
                        Response.Cookies.Add(acookie);
                    }              
                }   
            }


    //***************************追加
     HttpCookie cookie = Request.Cookies["userinfo1"];
            cookie.Expires = System.DateTime.Now.AddMinutes(20);//设置过期时间
            for (int i = 0; i < 5; i++)
            {
                cookie.Values["K" + i.ToString()] = i.ToString();
                Response.Cookies.Add(cookie);
            }

  • 相关阅读:
    Ubuntu 16.04 not a com32r image
    重定向输出遇到的缓冲问题
    you don't have permission to access / on this server解决
    LaTeX入门简介
    解决eclipse中出现Resource is out of sync with the file system问题
    Ubuntu安装新英伟达驱动出现问题解决方法
    同步与异步的区别
    Cuda入门笔记
    解决 Cocos2d-x 3.2 error C1041: 无法打开程序数据库vc120.pdb
    vs2013编译过程中,错误 59 error C4996: 'GetVersionExW': 被声明为已否决
  • 原文地址:https://www.cnblogs.com/Fooo/p/1029119.html
Copyright © 2020-2023  润新知