HTML Agility Pack HtmlDocument 显示所有 Html?
我正在使用以下内容来获取工作正常的网页
public static HtmlDocument GetWebPageFromUrl(string url)
{
var hw = new HtmlWeb();
return hw.Load(url);
}
,但如何将 HTMLDocument 中的 HTML 的全部内容吐出到字符串中?
我尝试了 HtmlDocument.ToString() 但这并没有给我文档中的所有 HTML?有什么想法吗?
I am using the following to get a web page which works fine
public static HtmlDocument GetWebPageFromUrl(string url)
{
var hw = new HtmlWeb();
return hw.Load(url);
}
But how to I spit the entire contents of the HTML out from the HtmlDocument into a string?
I tried HtmlDocument.ToString() but that doesn't give me all the HTML in the document? Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DocumentNode.OuterHtml
包含完整的 html:在您的示例中:
DocumentNode.OuterHtml
contains the full html:In your example: