I need to read a html page and开发者_JAVA技巧 parse the contents of a table in that. I am using ASP.NET.Could anyone tell me how to do this. Thanks.
if you have a table name, you can do a Page.FindControl(table) Then loop using a foreach tablerow in table.
See http://htmlagilitypack.codeplex.com/
You can search SO for 'html agility' for ways to use it.
精彩评论