asp.net request 传中文乱码

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

接收:
String sGet = HttpUtility.UrlDecode(Request.QueryString["id"]);
Response.write(strGetString)

你可能感兴趣的:(C#+Asp.net)