I want to build a small application which will go to some websites and read specific data from these website, i want the application to be generic as i can so it work on any website i want later. So there is a good way to parse website using .net?
Share
I have been told that a good toolkit for doing screen scraping in .NET is HTML Agility Pack.
You should be aware that it’s always very hard to make a screen scraping solution stable, or general-purpose as you describe.
Also see other answers to this question: Screen scraping: regular expressions or XQuery expressions?