tags:

views:

298

answers:

3

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
+5  A: 

I've been using this line to launch the default browser:

System.Diagnostics.Process.Start("http://www.google.com");
ajma
A: 

Nice, Thanks.

Alex Baranosky
That's not really an answer.
Nick Stinemates