How to use WebBrowser Control
Drag and drop WebBrowser Control from toolbox on window Form.
![WebBrowser Control WebBrowser Control in C#.Net]()
Designing GUI
Now I add a label, TextBox and a button.
![WebBrowser Control WebBrowser Control in C#.Net]()
Code:
Write below code in button click.
![WebBrowser Control WebBrowser Control in C#.Net]()
Double click on Click event.
private void btnGo_Click(object sender, EventArgs e)
{
//The Navigate method of browser control views a page in the viewer.
webBrowser1.Navigate(textBox1.Text);
}
Run the project
![WebBrowser Control WebBrowser Control in C#.Net]()
When you enter URL address in textbox and click Go button then click event will fire and navigate method will open website which URL address is given in TextBox.
![WebBrowser Control WebBrowser Control in C#.Net]()
WebBrowser Properties
URL property: Gets or sets the URL of the current Web page. Setting this property navigates the control to the new URL.
AllowNavigation: Gets or sets a value indicating whether the control can navigate to another page after its initial page has been loaded.
TabStop: Gets or sets a value indicating whether the user can give the focus to this control using the TAB key.
Thank You