Hi!
I'm having trouble with the new webbrowser control. I'd like to use the
navigating_event to make some decisions. I tried to use the 'cancel'
property but nothing happens. (look here:
http://msdn2.microsoft.com/en-us/library/5z79szk4) If I simply try:
private void webBrowser1_Navigating(object sender,
WebBrowserNavigatingEventArgs e)
{
e.Cancel = true;
}
Nothing happens. The page is just loaded. Shouldn't this property
prevent that behavior? Any hints?
THX!
Tobias