How to use WebBrowser Control
Drag and drop WebBrowser Control from toolbox on window Form.
Designing GUI
Now I add a label, TextBox and a button.
Code:
Write below code in button click.
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
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 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