How to search for some text on a webpage?

.net, c#, web-scraping

Solution

You can use html parsing.. Html Agility Pack helps you for this.

Problem

I have used WatIn before to scrape a lot of data off of websites. I know I could handle this task with that, but I am hoping for a much lighter solution if possible. I want to be able to go to a URL, and see if the website has the word "open" on it, or if it has the word "closed" on it. Does anyone have a good suggestion?

Original source