c# – 为什么我不能在类中使用HttpServerUtility.HtmlEncode?

前端之家收集整理的这篇文章主要介绍了c# – 为什么我不能在类中使用HttpServerUtility.HtmlEncode?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用以下代码
string myString = HttpServerUtility.HtmlEncode("my link & details");

我收到以下错误

An object reference is required for the nonstatic field,method,or property.

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

解决方法

HtmlEncode不是一个静态方法,需要HttpServerUtility的一个实例来调用.由于HttpContext.Current.Server是一个HttpServerUtility实例,您可以改为使用;
string myString = HttpContext.Current.Server.HtmlEncode("my link & details");
原文链接:https://www.f2er.com/csharp/96052.html

猜你在找的C#相关文章