What is the preferred way to open a URL from a thick client application on Windows using C# and the .NET framework? I want it to use the default browser.

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

The following code surely works:

Process.Start("http://www.yoururl.com/Blah.aspx");

It opens the default browser (technically, the default program that handles HTTP URIs).

link|improve this answer
feedback

I'd use the Process.Start method.

Process.Start("http://www.google.com/");
link|improve this answer
feedback
private void launchURL_Click(object sender, System.EventArgs e){
 string targetURL = "http://stackoverflow.com";
 System.Diagnostics.Process.Start(targetURL);
}
link|improve this answer
feedback
System.Diagnostics.Process.Start("http://www.stackoverflow.com");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.