Well, I\'m using a simple webbrowser control to browse to a page, so I need to change the Text of the form while doing so. I\'m using -
private void webBrow
If firing twice is a problem then this should work:
string body="";
private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
if (body == webBrowser1.Document.Body.InnerHtml) return;
body = webBrowser1.Document.Body.InnerHtml;
// Here is something you want
}