Lets Start
1. Create a new Windows Application.2. Now add a Panel and Dock it to the top. (For the Address Bar and GO Button)3. Now add web browser control from the toolbox.4. Add the label, textbox and button on the panel.5. Now the basic structure is ready, its time for the real action.Double click on the Button to generate a event handler and type the following codeprivate void button1_Click(object sender, EventArgs e){ webBrowser1.Navigate(textBox1.Text);}
6. Now, just build your solution and type any website name in the address bar and click on go button.Note: The website address should be in the format http://www.websitename.comExtra Featuresyou can add several extra features to the Windows form that you have created..