C# winform及.net 中使用 Server.URLEncode

来源:互联网 发布:杭州恩牛网络 编辑:程序博客网 时间:2024/06/05 04:20
C#使用 Server.URLEncode

编码

 

System.Web.HttpUtility.UrlEncode(str,System.Text.Encoding.Unicode);System.Web.HttpUtility.UrlEncode(str,System.Text.Encoding.UTF8);System.Web.HttpUtility.UrlEncode(str,System.Text.Encoding.GetEncoding("GB2312")); 

 

解码

System.Web.HttpUtility.UrlDecode(str,System.Text.Encoding.Unicode);System.Web.HttpUtility.UrlDecode(str,System.Text.Encoding.UTF8);System.Web.HttpUtility.UrlDecode(str,System.Text.Encoding.GetEncoding("GB2312")); 

 

 

阅读全文
0 0
原创粉丝点击