Opening an URL in the default browser using VB.NET could not be any simpler. All you need to do is to invoke the Process.Start() method and pass the URL of the page that you wish to open:
System.Diagnostics.Process.Start("http://www.geekpedia.com")
Opening an URL in the default browser using VB.NET could not be any simpler. All you need to do is to invoke the Process.Start() method and pass the URL of the page that you wish to open:
System.Diagnostics.Process.Start("http://www.geekpedia.com")