关于asp.net中cookie在调试过程中读写正常发布后乱码问题

时间:2021-05-31 20:10:41

最近在做的项目发布后出现了乱码的问题,既然出现了乱码很大的可能性是跟编码有关系,所以首先的解决方案就是重新对cookie进行编码,

在写入的cookie的时候编码,在读取的时候解码

在写入cookie的时候重新设置编码方式:

HttpCookie cookname= new HttpCookie("name");
cookname.Value = HttpUtility.UrlEncode(textbox1.Value.ToString(), System.Text.Encoding.GetEncoding("GB2312"));
Response.AppendCookie(cookname);

在读取cookie的时候需要解码:

  if (Request.Cookies["cookname"] != null)
{
modeluser.username= HttpUtility.UrlDecode(Request.Cookies["cookname"].Value.ToString(), System.Text.Encoding.GetEncoding("GB2312"));
}