解决ASP.NET中的各种乱码问题

http://www.cnblogs.com/fish-li/archive/2012/10/14/2723631.html

C# URL 中文编码与解码

参考资料

http://www.sosuo8.com/article/show.asp?id=3036

http://blog.csdn.net/zhongzhengfeng/article/details/3236551

http://www.mxcz.net/tools/Url.aspx

非常蛋疼的事情, google 和 baidu 在编码是分别采用了 UTF-8 和 GB2312

基础知识

UTF-8中,一个汉字对应三个字节,GB2312中一个汉字占用两个字节。 
不论何种编码,字母数字都不编码,特殊符号编码后占用一个字节。

自动解码

public static string MyUrlDeCode(string str, Encoding encoding)
{
    if (encoding == null)
    {
        Encoding utf8 = Encoding.UTF8;
        //首先用utf-8进行解码                   
        string code = HttpUtility.UrlDecode(str.ToUpper(), utf8);
        //将已经解码的字符再次进行编码.
        string encode = HttpUtility.UrlEncode(code, utf8).ToUpper();
        if (str == encode)
            encoding = Encoding.UTF8;
        else
            encoding = Encoding.GetEncoding("gb2312");
    }
    return HttpUtility.UrlDecode(str, encoding);
}

More

谨慎使用 Request["foo"] 获取参数,反正就是各种bug

还是自己一个参数一个参数的提取安全些

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。