I am using System.Diagnostics.Process.Start from a desktop application to start the default browser to visit a link, as below. This is using C# with .NET 4.0 o
System.Diagnostics.Process.Start
For WinRT apps only, it's simply
Launcher.LaunchUriAsync(new Uri("http://www.google.com"));
Take a look here.