I want to make my WPF application open the default browser and go to a certain web page. How do I do that?
+9
A:
System.Diagnostics.Process.Start("http://www.webpage.com");
One of many ways.
JTA
2009-02-02 04:39:39
+5
A:
I've been using this line to launch the default browser:
System.Diagnostics.Process.Start("http://www.google.com");
ajma
2009-02-02 04:39:47
That's not really an answer.
Nick Stinemates
2009-02-02 06:17:27