I know that this:
Process.Start(\"http://www.somewebsite.com/\");
launches a webpage in the users default browser. But, I am creating a use
I did that some time ago, just use:
string browser = "chrome.exe";
//string browser = "firefox.exe";
//...
Process myProcess = new Process();
myProcess.StartInfo.UseShellExecute = true;
myProcess.StartInfo.FileName = browser;
myProcess.StartInfo.Arguments = "\"" + url + "\"";
myProcess.Start();
Process.Start(@"C:\Program Files\Mozilla Firefox\firefox.exe", "http://www.somewebsite.com/");
See also:
Firefox command line options
MSDN page for Process.Start