首页 > 代码库 > C# html转义

C# html转义

HTML转义字符的解析方法:
第一种:ASP.NET中的html解析
HttpUtility.HtmlDecode()方法
system.web
 
第二种:网络爬虫中的

WebUtility.HtmlDecode 方法 (String)

将已经为 HTTP 传输进行过 HTML 编码的字符串转换为已解码的字符串。

命名空间:   System.Net
程序集:  System(System.dll 中)
 
https://msdn.microsoft.com/zh-cn/library/ee388354.aspx

C# html转义