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.shefeekj.com”);

Discussion
No comments for “Open a website in Internet Explorer using c#.net”