Retrieve data off of websites

Windsailor

Well-known member
Joined
Aug 2, 2006
Messages
45
Programming Experience
1-3
I would like to retrieve data off of websites and do this programmatically using vb.net; how would I go about this?

This is for a desktop app.
 
Hello.

Depends on the website. First of all I'd use HTTPWebRequest and HTTPWebResponse to retrieve the site itself. Afterwards you'd have to work with the source of the site.

Bobby
 
Apparently, you can use the Jet database driver, with its data source mode set to html, and the source set to the URL. Jet will parse the tabular content and allow you to select data from them.. I use this but only on local files. A friend has written a program that retrieves data from shopping websites and performs price comparisons. Quite clever, I thought
 
Back
Top