我在 .net 3.5 中使用了此代码
HttpUtility.UrlEncode("", new UTF8Encoding()).Replace('+', ' ');
效果很好,但我已经在 .NET 4.0 下编译了项目,它给了我这个错误:
"The name 'HttpUtility' does not exist in the current context."
.
我添加了System.Web
和System.Web.Extensions
引用。这还没有解决这个错误。