.net 4种添加Cookie方法

时间:2014-01-16 21:02:17   收藏:0   阅读:361
bubuko.com,布布扣
 //第一种添加Cookie方法
        HttpCookie myCookie = new HttpCookie("userrole");
        myCookie.Values["a"] = "a";
        myCookie.Values[""] = "b";
        myCookie.Expires.AddDays(1);
        Response.Cookies.Add(myCookie);
        //Response.AppendCookie(mycookie);这个也可以添加
        //第一种获取Cookie方法
        Response.Write(Request.Cookies["userrole"].Values["a"].ToString());

        //第二种添加Cookie方法
        HttpCookie myCookie = new HttpCookie("userrole");
        myCookie.Values["a"] = "a";
        myCookie.Values["b"] = "b";
        myCookie.Expires.AddDays(1);
        Response.Cookies.Add(myCookie);
        //第二种读取Cookie方法
        HttpCookie cookie = Request.Cookies["userrole"];
        Response.Write(cookie.Values["a"].ToString());
        Response.Write(cookie.Values["b"].ToString());

        //第三种添加Cookie方法
        HttpCookie myCookie = new HttpCookie("userrole");
        myCookie.Value = "a";
        Response.Cookies.Add(myCookie);
        //第三种读取Cookie方法
        Response.Write(Request.Cookies["userrole"].Value);

        //第四种添加Cookie方法
        HttpContext.Current.Response.Cookies.Add(new HttpCookie("userrole", "超级管理员"));
        Response.Cookies["userrole"].Value = "超级管理员";
        HttpCookie cookie = Request.Cookies["userrole"];
        Response.Write(cookie.Value);
        //第三种读取Cookie方法
        Response.Write(Request.Cookies["userrole"].Value);
bubuko.com,布布扣

原文:http://www.cnblogs.com/cnxinwa/p/3518985.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!