i am useing this code to read html pages :
WebClient client = new WebClient();
String htmlCode = client.DownloadString(@"C:\checkemails\check.html");
// Replace all html breaks for line seperators.
htmlCode = htmlCode.Replace("<br>", "\r\n");
MessageBox.Show(htmlCode);
the html page is on C:\ but lets say i am loading yahoo.com.. or what ever page.
i need to find a div named who got the id of
<div id ="say">
how can i do so?