LinkLabel... open in default web browser?
I always use them like this. This way you will get the default browser to open the URL.
ProcessStartInfo sInfo = new ProcessStartInfo("http://www.google.com");
Process.Start(sInfo);
yes - you can use System.Diagnostics.Process.Start(url)
in the "link clicked" event.