Sets or returns the URL that the hyperlink links to.

 public System.String Href{ get; set; }
Public Property Href() As String

          //--- 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"