本文介绍了如果您可以解决此问题_Cookies的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

HttpCookie hc = new HttpCookie("PersianSource");

       hc.Expires = DateTime.Now.AddYears(10);
       hc.Value = "123:;456";

       Response.Cookies.Add(hc);



       if (Request.Cookies["PersianSource"] != null)
       {
           string c = Request.Cookies["PersianSource"].Value;

       }




如果您看到FireFox 123中的Cookies:; 456,请不要保存!FireFox仅保存123:
仅保存Arive字符'':''
为什么???它很有趣:-)




if you see Cookies In FireFox 123:;456not Save!!!
FireFox Save Only 123:
only Save Arive Character '':''
Why????!!!its Funny:-)

推荐答案

HttpUtility.UrlEncode(myCookieData);
HttpUtility.UrlDecode(myEncodedCookieData);



这篇关于如果您可以解决此问题_Cookies的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 16:12