You can get the webpage as a string with this code
string webpageData;
using (System.Net.WebClient webClient = new System.Net.WebClient())
webpageData = webClient.DownloadString("http://www.cnn.com");
Then just use regular string methods
var containsWord = webpageData.Contains("word");
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…