Changing the URL on web browser objects

How do you change the URL on web browser objects You can't enter strings, or else it says "Can't convert string to uri". Is there any option

Thanks,




Answer this question

Changing the URL on web browser objects

  • swells

    you can navigate to a url...

    Me.theWebBrowserControl.Navigate("www.somesite.com")

    is this what you are after

    you could also do this:

    Me.theWebBrowserControl.Naviate(new Uri("www.somesite.com"))

    or

    Me.theWebBrowserControl.Url = new Uri("www.somesite.com")



  • Jehan Badshah

    yeah, thanks a lot

  • Changing the URL on web browser objects