比如我的程序窗口上有个连接到百度的button,如何做,才能点击这个button的时候启动IE并且连接到百度?
注意:是winform,不是webform!
System.Diagnostics.Process.Start("www.baidu.com")
System.Diagnostics.Process.Start("IExplore.exe", "http://www.baidu.com");
需要指定IExplore.exe,不然将使用系统默认浏览器打开,比如可能是Firefox