欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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())

 

相关标签: cookie asp.net c#