asp.net request 传中文乱码

传递: 
Response.Redirect("show.aspx?id="+ HttpUtility.UrlEncode("中国")); 

接收: 
String sGet = HttpUtility.UrlDecode(Request.QueryString["id"]); 
Response.write(strGetString)
原文地址:https://www.cnblogs.com/zhangzt/p/1857215.html