SHDocVw.InternetExplorerClass ie=new SHDocVw.InternetExplorerClass ();
Object vHeaders = null;
Object vPost = null;
Object vTarget = null;
Object vFlags = null;
ie.Navigate("http://www.google.com",ref vFlags,ref vTarget,ref vPost,ref
vHeaders);
ie.Visible =true;
System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo.FileName = "iexplore"; proc.StartInfo.Arguments = "http://www.google.com/"; proc.Start();
Back to C#