Sets or returns the URL that the hyperlink links to.

<p> public System.String Href{ get; set; }</p>
<p>Public Property Href() As String</p>

          //--- Get Href
          string linkHref = link.Href;

          //--- Set Href
          link.Href = "http://www.softartisans.com";
        
          '--- Get Href
          Dim linkHref As String = link.Href

          link.Href = "http://www.softartisans.com"