Open a web page in user's default browser

DominicB

Active member
Joined
May 2, 2008
Messages
30
Programming Experience
Beginner
Hi all

This would seem to be a really easy question, but I can't figure it out.:mad:
A user enters a web address in a textbox, and a button when clicked will open that web page in the users default browser.

Like I say, it sounds really easy but a quick search of this forum hasn't revealed anything.

Thanks for reading, and have a nice day.

DominicB
 
VB.NET:
System.Diagnostics.Process.Start("http://www.google.com")

Will open the Google page in your default browser.
 
Back
Top