码迷,mamicode.com
首页 > 其他好文 > 详细

跨页面传值之Cookie 中文乱码问题

时间:2014-10-05 11:54:58      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   io   ar   sp   问题   c   on   

写入Cookie  

  protected void Button1_Click(object sender, EventArgs e)
    {
        HttpCookie _ck = new HttpCookie("persion");
        _ck.Value = HttpUtility.UrlEncode( "小杨");
        _ck.Expires = DateTime.Now.AddDays(1);
        Response.Cookies.Add(_ck);

    }

  

读取Cookie

    protected void Page_Load(object sender, EventArgs e)
    {
        if (Request.Cookies["persion"] != null)
        {
            string _s;
            _s =  Request.Cookies["persion"].Value;
            Response.Write(HttpUtility.UrlDecode(_s));
        }
    }

 

红色标记不添加会导致读取Cookie“中文”乱码。

跨页面传值之Cookie 中文乱码问题

标签:style   http   color   io   ar   sp   问题   c   on   

原文地址:http://www.cnblogs.com/lhfm56/p/4006750.html

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