Possible Duplicate:
What is the best way to parse html in C#?
I'm trying to write some code which uses a HttpWebRequest with GET method (or any suggested faster function), find a keyword on the page and then display what comes after it in various textviews.
The homepage it looks up will always be the same and will always find the same lines but with different data.
I've read about something called HtmlAgilityPack a lot but I cannot figure out if I can use it for this, nor how to.
Is there any faster functions to use to just get and find data within source?
Can I use HtmlAgilityPack, if so how (example please)?
Is there any easier way this can be done?
cheers
nox