现象:ASP.NET后台写入中文COOKIE后,前台用JS读取为乱码
解决:
后台ASP.NET写入
HttpContext.Current.Request.Cookies[“cookiename”].Value = System.Web.HttpUtility.UrlEncode(strValue,Encoding.UTF8);
前台JS读取
使用decodeURIComponent解码显示
后台ASP.NET写入
HttpContext.Current.Request.Cookies[“cookiename”].Value = System.Web.HttpUtility.UrlEncode(strValue,Encoding.UTF8);
前台JS读取
使用decodeURIComponent解码显示