System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.FileName = "IExplore.exe";
process.StartInfo.Arguments = "http://www.google.com";
process.Start();
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.FileName = "IExplore.exe";
process.StartInfo.Arguments = "http://www.google.com";
process.Start();