
WebBrowser.Navigate is a method which the WebBrowser can access to a website. For example, if we want that when click a button, the webbrowser navigates to an address, we use this function.
If we are programming in Silverlight or WPF -also for Windows Phone 7-, the code line must be in this format -for example-:
WebBrowser1.Navigate(new Uri("http://localhost/default.htm"))If we are programming in Windows Forms, the code line must be in this format -for example-:
WebBrowser1.Navigate("http://localhost/default.htm")




Help






