我正在尝试使用以下代码:

string myString = HttpServerUtility.HtmlEncode("my link & details");

我收到以下错误:



为什么我不能在类中使用HttpServerUtility.HtmlEncode

最佳答案

HtmlEncode不是静态方法,需要HttpServerUtility实例才能调用。由于HttpContext.Current.Server是HttpServerUtility实例,因此可以代替使用;

string myString = HttpContext.Current.Server.HtmlEncode("my link & details");

10-06 10:10