views:

165

answers:

2

Hi, I need to read a html page and parse the contents of a table in that. I am using ASP.NET.Could anyone tell me how to do this. Thanks.

A: 

if you have a table name, you can do a Page.FindControl(table) Then loop using a foreach tablerow in table.

user279521
A: 

See http://htmlagilitypack.codeplex.com/

You can search SO for 'html agility' for ways to use it.

kervin