Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Program to read a web page

Status
Not open for further replies.

cmdematos

IS-IT--Management
Mar 7, 2001
29
US
I want to monitor several web pages on a regular basis that contain lists of information. Offcourse the web pages are meant for human consumption, but I want to write a program that will filter the lists for the information that I want and update a database with that information.

I am a seasoned programmer, but not on C# and not on this. If I can receive some pointers, or some sample code - thats about all I need to get started.

THANK YOU VERY MUCH!!
 
The easiest way to do this is by HTML Screen Scraping. You can make a WebRequest (check out System.Net namespace) retrieve the WebResponse and then use regular expressions to filter the HTML to get the bits you want. This article should be plenty to get you started :)


Rob

Every gun that is made, every warship launched, every rocket fired, signifies in the final sense a theft from those who hunger and are not fed, those who are cold and are not clothed - Eisenhower 1953
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top