C#调用ie浏览器打开网址
- 日期 : 2012-05-01
string url;
url = http://www.61916.com;
System.Diagnostics.Process.Start("iexplore.exe", url); //调用IE
System.Diagnostics.Process.Start(url); //调用默认浏览器
url = http://www.61916.com;
System.Diagnostics.Process.Start("iexplore.exe", url); //调用IE
System.Diagnostics.Process.Start(url); //调用默认浏览器