Not
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
The following code example demonstrates how to navigate the WebBrowser control to a specific URL.
To determine when the new document is fully loaded, handle the DocumentCompleted event. For a demonstration of this event, see How to: Print with a WebBrowser Control.
Example
Me.webBrowser1.Navigate("https://www.microsoft.com")
this.webBrowser1.Navigate("https://www.microsoft.com");
Compiling the Code
This example requires:
A WebBrowser control named
webBrowser1.References to the System and System.Windows.Forms assemblies.
See Also
Tasks
How to: Print with a WebBrowser Control
Reference
WebBrowser
System.Windows.Forms.WebBrowser.DocumentCompleted
System.Windows.Forms.WebBrowser.Navigating
System.Windows.Forms.WebBrowser.Navigated