To open a webpage in your system’s default web browser, when you click a button in your form, write the following code in your button click event:
Dim sURL as String = "http://www.dotnetblogger.info" Process.Start(sURL)
The above piece of code will lauch the web page as specified with the default browser.
Tested with VS 2008
If you found any issues with the code posted above, please leave a comment. We will fix the code as soon as possible.