The blog has moved to a new address. The blog is now located at http://devintelligence.com

Adsense

Wednesday, July 19, 2006

Why won’t the WebBrowser navigate?


Be sure that AllowNavigation is set to true. This property not only prevents users from making the WebBrowser navigate, but also prevents the WebBrowser from programmatically being given a new Url.

1 comment:

Anonymous said...

Also, if you want to update the content that is displayed if you place a new URL; you must call the WebView.Update method after setting the new URL using Navigate; using Refresh will only refresh what was last displayed; I got stuck with this and was wondering why the same page kept being displayed.

Cheers!