c#如何实现按一下button就用浏览器打开一网站?

2024-12-30 02:09:29
推荐回答(1个)
回答1:

如果是winform
程序可以使用如下方法:
  Process.Start("iexplore.exe",
"http://网址");
//
使用ie找开网址
  Process.Start("http://网址");
//
使用本机默认浏览器打开网址