reading table fron another page...

yaniv

Centurion
Joined
Apr 15, 2002
Messages
167
Location
israel
I need to add lists from another page, where the data organize in table (the kind of table on line stores build for "comparing" sites.

i don't know how to strat... how can i read another site table page and use the data?
 
You could always use something like System.Net.WebClient to read the raw data from the page in question.
However the big issue is going to be parsing the page contents correctly. If you know the format of the page isn't going to change then you may be able to do this.
Probably the way forward is to look at regular expressions - be warned though that they are not a trivial thing to learn.
 
Back
Top