当前位置: 代码迷 >> 综合 >> C# winform及.net 中使用 Server.URLEncode
  详细解决方案

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

热度:88   发布时间:2023-12-10 10:45:14.0
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")); 

 

 

  相关解决方案