C#中,aspx网页读取存入cookies数据中文乱码问题
程序员文章站
2022-06-11 22:13:27
...
登录用户时,将用户中文名称显示出来。
首先登陆成功后将中文信息放入cookies:
Response.Cookies["userName"].Value = HttpUtility.UrlEncode(editor.editorName);
然后将缓存信息取出来显示在前台页面:
<asp:Label ID="lbluserName" runat="server"></asp:Label>
lbluserName.Text = HttpUtility.UrlDecode(Request.Cookies["userName"].Value.ToString())