HtmlLink.Href Property
.NET Framework 2.0
Note: This property is new in the .NET Framework version 2.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");
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
HtmlLink ClassHtmlLink Members
System.Web.UI.HtmlControls Namespace
Other Resources
HTML Server ControlsCommunity Additions
ADD
Show: