HtmlHead Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe HtmlHead.
Surcharges
HtmlHead() |
Initialise une nouvelle instance de la classe HtmlHead. |
HtmlHead(String) |
Initialise une nouvelle instance de la classe HtmlHead en utilisant la balise spécifiée. |
HtmlHead()
Initialise une nouvelle instance de la classe HtmlHead.
public:
HtmlHead();
public HtmlHead ();
Public Sub New ()
Exemples
L’exemple suivant montre comment ajouter par programmation un HtmlHead contrôle à une page et y ajouter title
des link
éléments.
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void Page_Load(object sender, System.EventArgs e)
{
// Programmatically create an HtmlHead control.
HtmlHead head = new HtmlHead();
// Add the page title to the header element.
HtmlTitle title = new HtmlTitle();
title.Text = "HtmlHead Constructor Example";
head.Controls.Add(title);
// Add a defined style sheet that contains the body
// style to the HtmlHead control.
HtmlLink link = new HtmlLink();
link.Href = "~/Stylesheet.css";
link.Attributes.Add("rel", "stylesheet");
link.Attributes.Add("type", "text/css");
head.Controls.Add(link);
// Add the HtmlHead controls to the Controls
// collection of the page.
Page.FindControl("HtmlElement").Controls.AddAt(0, head);
}
</script>
<html id="HtmlElement"
runat="server"
xmlns="http://www.w3.org/1999/xhtml" >
<body>
<form id="form1" runat="server">
<h3>HtmlHead Class Constructor Example </h3>
<hr />
<asp:label id="Label1"
text = "View the HTML source code of this page to see the title
and style sheet link added to the header element."
runat="server">
</asp:label>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
' Programmatically create an HtmlHead control.
Dim head As New HtmlHead()
' Add the page title to the header element.
Dim title As New HtmlTitle()
title.Text = "HtmlHead Constructor Example"
head.Controls.Add(title)
' Add a defined style sheet that contains the body
' style to the HtmlHead control.
Dim link As New HtmlLink()
link.Href = "~/Stylesheet.css"
link.Attributes.Add("rel", "stylesheet")
link.Attributes.Add("type", "text/css")
head.Controls.Add(link)
' Add the HtmlHead controls to the Controls
' collection of the page.
Page.FindControl("HtmlElement").Controls.AddAt(0, head)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" id="HtmlElement"
runat="server">
<body>
<form id="form1" runat="server">
<h3>HtmlHead Class Constructor Example </h3>
<hr />
<asp:label id="Label1"
text = "View the HTML source code of this page to see the title
and style sheet link added to the header element."
runat="server">
</asp:label>
</form>
</body>
</html>
Remarques
Le tableau suivant montre la valeur de propriété initiale d’une instance de HtmlHead.
Propriété | Valeur initiale |
---|---|
TagName | Chaîne « head ». |
Voir aussi
S’applique à
HtmlHead(String)
Initialise une nouvelle instance de la classe HtmlHead en utilisant la balise spécifiée.
public:
HtmlHead(System::String ^ tag);
public HtmlHead (string tag);
new System.Web.UI.HtmlControls.HtmlHead : string -> System.Web.UI.HtmlControls.HtmlHead
Public Sub New (tag As String)
Paramètres
- tag
- String
Une chaîne qui spécifie le nom de balise du contrôle.
Remarques
Le tableau suivant montre la valeur de propriété initiale d’une instance de HtmlHead.
Propriété | Valeur initiale |
---|---|
TagName | Valeur du paramètre tag . |