This
article will show you how you can use web browser control in c#.net windows
application. This will show to assign url in form load.
So for this
article first we will create a new windows application and add the below code
in the form load.
using System;
using
System.Windows.Forms;
namespace
WindowsFormsApplication2
{
public partial class Form3 : Form
{
public Form3()
{
InitializeComponent();
}
private void Form3_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("http://www.aspdotnet-pools.com");
}
}
}
|
In above
code I have assign the navigation url to the web browser control. Now we have
done run the application to check the output.
0 comments:
Please let me know your view