HtmlHead コンストラクタ ()とは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > HtmlHead コンストラクタ ()の意味・解説 

HtmlHead コンストラクタ ()

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

HtmlHead クラス新しインスタンス初期化します。

名前空間: System.Web.UI.HtmlControls
アセンブリ: 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>
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
HtmlHead クラス
HtmlHead メンバ
System.Web.UI.HtmlControls 名前空間
Header
AddAt

HtmlHead コンストラクタ (String)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

タグ指定して、HtmlHead クラス新しインスタンス初期化します。

名前空間: System.Web.UI.HtmlControls
アセンブリ: System.Web (system.web.dll 内)
構文構文

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
HtmlHead クラス
HtmlHead メンバ
System.Web.UI.HtmlControls 名前空間

HtmlHead コンストラクタ

HtmlHead クラス新しインスタンス初期化します。
オーバーロードの一覧オーバーロードの一覧

参照参照

関連項目

HtmlHead クラス
HtmlHead メンバ
System.Web.UI.HtmlControls 名前空間
Header
AddAt



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「HtmlHead コンストラクタ ()」の関連用語

HtmlHead コンストラクタ ()のお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



HtmlHead コンストラクタ ()のページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS