How to get html page?

I need to extract some information from an html webpage that contains the following table:

//Http://www.example.com/12.html //<html ... > <table> <tr> <td>HIIIIIIIIIII</td> // this is what I need from this page </tr> <tr><td>bla bla bla</td></tr> </table> 

any ideas?
Thanks u

0
source share
1 answer

You should take a look at the Html Agility Pack , which provides good ways to parse / read HTML (even malformed)

On this SO question , you can find an example of extracting table data. And this question contains a usage pattern with LINQ.

+9
source

All Articles