Capturing a Web page in vb.net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Good Morning,

Does anyone have an example of how, in vb.net, I can open a web page, and
then search through the captured page to pull specific values from it?

Thanks!

Dale
 
Good Morning,

Does anyone have an example of how, in vb.net, I can open a web page, and
then search through the captured page to pull specific values from it?

Thanks!

Dale

I have done something similar in C#. I used a WebBrowser control to
navigate to the page I wanted and then used the control's DocumentText
property to get to the text of the page so I could extract the
information I wanted. Both WebBrowser and myWebBrowser.DocumentText
should be available in VB.Net as well as in C#.

rossum


The ultimate truth is that there is no ultimate truth
 
Back
Top