System.Diagnostics.Process.Start("网址");//默认浏览器打开网页
System.Diagnostics.Process.Start(@"IEXPLORE.EXE", "网址");//指定IE打开


private void button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("IEXPLORE.EXE","http://www.baidu.com");
}

 

相关文章:

  • 2021-11-12
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
  • 2022-03-02
  • 2021-09-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-22
  • 2022-12-23
  • 2022-12-23
  • 2021-07-08
  • 2021-12-20
  • 2022-12-23
相关资源
相似解决方案