Welcome

首页 / 软件开发 / C# / 使用C#打开网址(IE)

使用C#打开网址(IE)2009-10-13两种办法

第一种,直接打入网址用默认程序打开

System.Diagnostics.Process.Start("http://www.bianceng.cn");

第二种,使用指定程序并传入参数后打开

System.Diagnostics.Process.Start(@"C:Program FilesInternet ExplorerIEXPLORE.EXE","http://www.bianceng.cn");