HtmlHead コンストラクタ ()
アセンブリ: System.Web (system.web.dll 内)



プログラムでページに HtmlHead コントロールを追加して、そのコントロールに <title> 要素および <link> 要素を追加する方法を次のコード例に示します。
<%@ 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 id="HtmlElement" runat="server"> <body> <form 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="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" > <body> <form 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>

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
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


HtmlHead コンストラクタ (String)
アセンブリ: System.Web (system.web.dll 内)



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
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


HtmlHead コンストラクタ
Weblioに収録されているすべての辞書からHtmlHead コンストラクタ ()を検索する場合は、下記のリンクをクリックしてください。

- HtmlHead コンストラクタ ()のページへのリンク