我知道有内置的Internet Explorer,但我正在寻找的是用指定的URL打开Firefox/Mozilla窗口(运行应用程序).任何人都可以告诉我如何在C#(.nET)中做到这一点?
你可以这样做:
System.Diagnostics.Process.Start("firefox.exe", "http://www.google.com");
这将启动系统定义的默认浏览器:
string url = "http://stackoverflow.com/"; System.Diagnostics.Process.Start(url);
请记住,如果浏览器配置不正确,Process.Start(url)可能会抛出异常.