HtmlLink Constructor
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Inicializa una nueva instancia de la clase HtmlLink.
public:
HtmlLink();
public HtmlLink ();
Public Sub New ()
Ejemplos
En el ejemplo de código siguiente se muestra cómo declarar mediante programación un HtmlLink control y definir sus propiedades. Para obtener un ejemplo completo de código de trabajo, consulte el tema de información general de la HtmlLink clase.
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class HtmlLinkcs_aspx
{
void Page_Init(object sender, EventArgs e)
{
// Create an instance of HtmlLink.
HtmlLink myHtmlLink = 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);
}
}
// Define an HtmlLink control.
HtmlLink myHtmlLink = new HtmlLink();
myHtmlLink.Href = "~/StyleSheet.css";
myHtmlLink.Attributes.Add("rel", "stylesheet");
myHtmlLink.Attributes.Add("type", "text/css");
' Define an HtmlLink control.
Dim myHtmlLink As New HtmlLink()
myHtmlLink.Href = "~/StyleSheet.css"
myHtmlLink.Attributes.Add("rel", "stylesheet")
myHtmlLink.Attributes.Add("type", "text/css")
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
Comentarios
Use este constructor para crear e inicializar una nueva instancia del HtmlLink control.