Home > Software engineering >  How to get the current vb webbrowser control all the source code for open web pages?
How to get the current vb webbrowser control all the source code for open web pages?

Time:10-25

How to get the current vb webbrowser control all the source code for open web pages?
I tried WebBrowser1 Document. Body. OuterHTML can only obtain the body section, the head can't get,

CodePudding user response:

WebBrowser1. Document. Body. ParentNode. OuterHTML

CodePudding user response:

WebBrowser1. Document. DocumentElement outerHTML, available to all
  • Related