[Solved] How many times a word is present in a web page using htmlagility C#


You could treat the whole page/web request as a string and do something like this:
https://msdn.microsoft.com/en-us/library/bb546166.aspx

It might not be efficient and it would search CSS classes and everything else but it might be a starting point.

Else you need to use the agility pack and scrape through each not and check each bit of public text .

3

solved How many times a word is present in a web page using htmlagility C#