Using Labellink controls to access Web pages in vb.net

Source: Internet
Author: User

Public Sub New ()

MyBase.New

Form1 = Me

InitializeComponent ()

Add the initialization component's code under InitializeComponent ()

Me.LinkLabel1.Text = "http://www.bianceng.cn" ' URL

LinkLabel1. linkvisited = True ' flag visited links

LinkLabel1. LinkColor = color. Black ' link color

LinkLabel1. VisitedLinkColor = color. Blue ' visited link color

End Sub

Here is the event triggered by the LinkLabel click

Protected Sub Linklabel1_linkclick (ByVal sender as Object, ByVal e as System.EventArgs)

Direct access to the URL presented by the Linklabel1.text

System. Diagnostics.Process.Start (LinkLabel1. Text)

Of course, you can also specify a different URL or email with linklabel1.text, such as:

System. Diagnostics.Process.Start ("mailto:bianceng@tom.com")

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.