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 !

link|improve this question

71% accept rate
feedback

3 Answers

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.

link|improve this answer
I would like to parse HTML with C# just like we do with DOM ! Like for every Div Having the specific class name I would like to get text form child span or a or any other tags ! – Aladdin Gallas Jun 27 '11 at 17:28
@Aladdin Gallas I'm not sure what you mean...HTML Agility Pack *can* parse HTML. – NickAldwin Jun 27 '11 at 17:29
@NickAldwin : If HTMLAgilityPack can do that, I just need an example ! Thank you so much for Helping me – Aladdin Gallas Jun 27 '11 at 17:33
@Aladdin Gallas if you have a specific question about using Html Agility Pack, ask it separately on SO. – NickAldwin Jun 27 '11 at 18:33
show 1 more comment
feedback

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.

link|improve this answer
Thank you for your help 007. – Aladdin Gallas Jun 27 '11 at 16:48
feedback

A lot of people on SO like HtmlAgilityPack.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.