D
Derek Leuridan
I have the default webbrowser listener:
private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
//Stuff
}
and a button that calls:
webBrowser1.Navigate(URL)
URL="differentpage";
-----------------------------------------------------
I click the button, page loads, event fires. This only works once. After I click the button again, differentpage loads, but the event doesn't fire anymore.
Any ideas?
EggHeadCafe - Software Developer Portal of Choice
C# : row-clickable GridView and get and set gridview rows using JavaScript
http://www.eggheadcafe.com/tutorial...9465-c45307bae45b/c--rowclickable-gridvi.aspx
private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
//Stuff
}
and a button that calls:
webBrowser1.Navigate(URL)
URL="differentpage";
-----------------------------------------------------
I click the button, page loads, event fires. This only works once. After I click the button again, differentpage loads, but the event doesn't fire anymore.
Any ideas?
EggHeadCafe - Software Developer Portal of Choice
C# : row-clickable GridView and get and set gridview rows using JavaScript
http://www.eggheadcafe.com/tutorial...9465-c45307bae45b/c--rowclickable-gridvi.aspx