HtmlLink.Href Property
.NET Framework 3.0
Gets or sets the URL target of the link specified in the HtmlLink control.
Namespace: System.Web.UI.HtmlControls
Assembly: System.Web (in system.web.dll)
HtmlLink Members
System.Web.UI.HtmlControls Namespace
Assembly: System.Web (in system.web.dll)
The following code example demonstrates setting the Href property to a cascading style sheet (CSS) that is saved in the same directory as the Web page. For a complete, working code example, see the HtmlLink class overview topic.
Partial Class HtmlLinkvb_aspx Sub Page_Init(ByVal sender As Object, ByVal e As EventArgs) ' Create an instance of HtmlLink. Dim myHtmlLink As HtmlLink = New HtmlLink() myHtmlLink.Href = "StyleSheet.css" myHtmlLink.Attributes.Add("rel", "stylesheet") myHtmlLink.Attributes.Add("type", "text/css") ' Add the instance of HtmlLink to the <HEAD> section of the page. head1.Controls.Add(myHtmlLink) End Sub End Class
// Define an HtmlLink control. HtmlLink myHtmlLink = new HtmlLink(); myHtmlLink.Href = "~/StyleSheet.css"; myHtmlLink.Attributes.Add("rel", "stylesheet"); myHtmlLink.Attributes.Add("type", "text/css");
Reference
HtmlLink ClassHtmlLink Members
System.Web.UI.HtmlControls Namespace
Other Resources
HTML Server ControlsCommunity Additions
ADD
Show: