How to launch an URL in the default browser

If you pass a URL to the Windows Shell, it will open it with the
appropriate application, in this case the default browser. Thus, to
launch the Geekpedia website in the default browser, the following
code is needed:


System.Diagnostics.Process.Start(“http://www.geekpedia.com”);

Leave a Reply

Your email address will not be published. Required fields are marked *

Back To Top