HtmlLink Constructor
.NET Framework 2.0
Note: This constructor is new in the .NET Framework version 2.0.
Initializes a new instance of the HtmlLink class.
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 how to programmatically declare an HtmlLink control and define its properties. 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: