Url转中文编码

string q = Request.Url.Query;

System.Collections.Specialized.NameValueCollection nv =
        System.Web.HttpUtility.ParseQueryString(q, System.Text.Encoding.GetEncoding("GB2312"));
        string areaid = nv["aid"];

原文地址:https://www.cnblogs.com/Love/p/1500648.html