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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top