Question How to link a web ?

yychbox

New member
Joined
Oct 14, 2008
Messages
3
Location
CHINA
Programming Experience
Beginner
How to link a web ?
I want to link a web with linklabel,links method is can not been used .
 
You add a LinkLabel to your form, then in it's click event you use
VB.NET:
System.Diagnostics.Process.Start("URL HERE")
This will open the user's default web browser and navigate it to the link.
 
Back
Top