HtmlHead コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HtmlHead クラスの新しいインスタンスを初期化します。
オーバーロード
HtmlHead() |
HtmlHead クラスの新しいインスタンスを初期化します。 |
HtmlHead(String) |
指定されたタグを使用して、HtmlHead クラスの新しいインスタンスを初期化します。 |
HtmlHead()
HtmlHead クラスの新しいインスタンスを初期化します。
public:
HtmlHead();
public HtmlHead ();
Public Sub New ()
例
次の例は、プログラムによってコントロールをHtmlHeadページに追加し、それに 要素と link
要素を追加title
する方法を示しています。
<%@ 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>
注釈
のインスタンスの初期プロパティ値を次の HtmlHead表に示します。
プロパティ | 初期値 |
---|---|
TagName | 文字列 "head" です。 |
こちらもご覧ください
適用対象
HtmlHead(String)
指定されたタグを使用して、HtmlHead クラスの新しいインスタンスを初期化します。
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)
パラメーター
- tag
- String
コントロールのタグ名を指定する文字列。
注釈
のインスタンスの初期プロパティ値を次の HtmlHead表に示します。
プロパティ | 初期値 |
---|---|
TagName |
tag パラメーターの値。 |
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET