asp.net默认的编码是UTF-8js文件里的编码也是UTF-8当你要在aspx页面上进行传中文参数时会出现乱码<-----request.aspx--接收参数页-----><----response.aspx--传送参数页----->例一:<a href=”request.aspx?str=中国人”></a>解决办法一:1.可以和改webconfig的编码 如:<location path='response.aspx'><system.web><globalization fileEncoding='gb2312' requestEncoding='gb2312' responseEncoding='gb2312' culture='zh-CN'/></system.web></location>注意:你也要把request.aspx页面上的编码也改成同样的,虽然中文乱码解决了,但如果你用到了js文件就会出现乱码//用这以上方法的话不会改变网站的其它页面上的编码<location path='request.aspx'><system.web><globalization fileEncoding='gb2312' requestEncoding='gb2312' responseEncoding='gb2312' culture='zh-CN'/></system.web></location>解决办法二:1.如果你不想动webconfig 你可以在”response.aspx.cs“里面对参数进行编码 如:response.aspx在页面上:<a href=”request.aspx?str=<%=str%>”></a>response.cs页面上:声明一个变量strpublic string str=”中国人”;str= HttpUtility.UrlEncode(str,System.Text.Encoding.GetEncoding(”GB2312”));//这时str已经是编码后的2.而在request.aspx.cs文件中也要进行转换 如:声明一个变量 System.Collections.Specialized.NameValueCollection gb2312=HttpUtility.ParseQueryString(Request.Url.Query,System.Text.Encoding.GetEncoding(”GB2312”));string str=gb2312[”str”];这里的str就是你要接收的中文。例二如果你想在js里面传送中文参数 如:request.aspx?str=”+encodeURI(”中国人”);这样就不会出现乱码了例三就是我在cshn上找到的一个方法我也没试过,大家可以试一下protected string GetQueryString(string sKey,System.Text.Encoding e) {
string QueryString=Server.UrlDecode(System.Web.HttpUtility.UrlDecode(Request.ServerVariables”QUERY_STRING ”],e));
System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex(sKey+”=([^&$]*?)(&|$) ”);
System.Text.RegularExpressions.Match m = reg.Match(QueryString); if (m.Success)
{
return m.Result( ”$1 ”);
} else
return String.Empty; } //以上这个不受编码影响,只需知道原来传入的编码就可.