0

I would like to extract specific data form a known Url : from html tags like span, a, divs ... !
So I'm searching for an existing library for a WebCrawler written in C# ! ... or maybe any other idea.

Thank you !

Aladdin Gallas
  • 701
  • 2
  • 12
  • 36

3 Answers3

2

For parsing HTML, you might want to look into the HTML Agility Pack. As for grabbing the HTML from a website, you can use WebClient.

NickAldwin
  • 11,584
  • 12
  • 52
  • 67
0

This guy wrote an article on using HtmlAgilityPack for web crawling from C#, and this is a framework for web crawling, though the project seems to be dead, you can look at them and see if they fit your needs.

james_bond
  • 6,778
  • 3
  • 28
  • 34
0

A lot of people on SO like HtmlAgilityPack.

Chris Trombley
  • 2,232
  • 1
  • 17
  • 24