给定带有按钮的Winforms应用程序 - 如何通过单击按钮从该应用程序中打开特定的URL /网站?
答案 0 :(得分:1)
您可以使用:
System.Diagnostics.Process.Start("http://www.page.com");
答案 1 :(得分:0)
你可以通过命令行
"C:\Program Files\Internet Explorer\iexplore.exe" www.google.com
了解Process课程
Process myProcess = new Process();
myProcess.StartInfo.FileName = "command there";
myProcess.Start();