如何从 .net 中的框架外的 Webbrowser 控件检索 HTML (c#)
我知道我可以通过以下方式获取 Webbrowser 控件的 HTML(源代码):
HtmlDocument htmldoc = webBrowser1.Document
但这仅提供“父页面”的 html 代码。如果网页使用框架,则不会返回包括框架在内的整个页面的 html 代码。
如何获取包含框架的完整 HTML 代码 - 或者选择单个框架并获取该框架的 html 代码?
I know that I can get the HTML (source code) of a Webbrowser control via:
HtmlDocument htmldoc = webBrowser1.Document
But this does only provide the html code of the "parent page". In case the webpage uses frames, it does not return the html code for the whole page including frames.
How can I get the complete HTML code including frames - or select a single frame and get the html code of that frame?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最好的选择是:
my best option was: