How to Launch a URL from C#

You can use the Process class and Start method. Pass URL in the Start method and it will open a URL in the default browser on your machine.

System.Diagnostics.Process.Start("http://www.c-sharpcorner.com/Default.aspx");