HtmlEncode(String) 将字符串转换为 HTML 编码字符串。
HtmlDecode(String) 将已经为 HTTP 传输进行过 HTML 编码的字符串转换为已解码的字符串。
在web端项目中通常使用HttpUtility.HtmlEecode,HttpUtility.HtmlDecode,Server.HtmlEncode,Server.HtmlDecode;
在C端项目中通常使用WebUtility.HtmlEncode,WebUtility.HtmlDecode;
在说HttpUtility.HtmlEecode,HttpUtility.HtmlDecode,Server.HtmlEncode