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.
Random thoughts about software development and tools
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.
at 12:11
1 comment:
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!
Post a Comment