Here is the code in C#.net to open a website using internet explorer from a .net application.AN instance of internet explorer is created and the website is accessed using this instance
Note : Add reference to the DLL SHDocVw
using SHDocVw;
object o = null;
SHDocVw.InternetExplorer ie = new SHDocVw.InternetExplorerClass();
IWebBrowserApp wb = (IWebBrowserApp)ie;
wb.Visible = true;
wb.Navigate(url, ref o, ref o, ref o, ref o);
OpenBrowser(”http://www.google.com”);