dotnetmonitor.com |
|
|||||||||||
| The webBrowser.Url is
not a string, but rather is a Uri object. If you
still want to use a string to set the WebBrowser.Url you can do so in one of following
ways:
1. webBrowser.Url = new Uri(path string); 2. webBrowser.Navigate(path string); 3. webBrowser.Navigate(new Uri(path string)); |
|||||||||||