HtmlLink Class
.NET Framework 3.0
Allows programmatic access to the HTML link element on the server.
Namespace: System.Web.UI.HtmlControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The HtmlLink control allows programmatic access to the HTML link element on the server. The HtmlLink control can be used to programmatically specify a cascading style sheet (CSS) reference in a Web page.
| Topic | Location |
|---|---|
| How to: Add HTML Server Controls to a Web Page Using ASP.NET Syntax | Building ASP .NET Web Applications |
| How to: Set HTML Server Control Properties Programmatically | Building ASP .NET Web Applications |
| How to: Add HTML Server Controls to a Web Page Using ASP.NET Syntax | Building ASP .NET Web Applications |
| How to: Set HTML Server Control Properties Programmatically | Building ASP .NET Web Applications |
The following code example demonstrates using the HtmlLink control to programmatically add a style sheet to a Web page.
To run the preceding code example, you need a cascading style sheet (CSS) named Stylesheet.css, containing the following code, saved in the same directory as your Web site.
body {
padding-left: 11em;
font-family: Verdana, "Times New Roman",
Times, serif;
color: blue;
background-color: silver }
h1 {
font-family: Helvetica, Geneva, Arial,
SunSans-Regular, sans-serif;
color: purple }
body {
padding-left: 11em;
font-family: Verdana, "Times New Roman",
Times, serif;
color: blue;
background-color: silver }
h1 {
font-family: Helvetica, Geneva, Arial,
SunSans-Regular, sans-serif;
color: purple }
- AspNetHostingPermission for operating in a hosted environment. Demand value: LinkDemand; Permission value: Minimal.
- AspNetHostingPermission for operating in a hosted environment. Demand value: InheritanceDemand; Permission value: Minimal.
System.Object
System.Web.UI.Control
System.Web.UI.HtmlControls.HtmlControl
System.Web.UI.HtmlControls.HtmlLink
System.Web.UI.Control
System.Web.UI.HtmlControls.HtmlControl
System.Web.UI.HtmlControls.HtmlLink
Community Additions
ADD
Show: