次の方法で共有


HtmlTitle サーバー コントロールの宣言構文

title HTML 要素へのマップを作成するサーバー側コントロールを作成します。

<title
    EnableViewstate="False|True" 
    ID="string" 
    OnDataBinding="DataBinding event handler" 
    OnDisposed="Disposed event handler" 
    OnInit="Init event handler" 
    OnLoad="Load event handler" 
    OnPreRender="PreRender event handler" 
    OnUnload="Unload event handler" 
    runat="server" 
    Title="string" 
    Visible="False|True" >
    titletext
</title>

解説

HtmlTitle クラスは、Web フォーム ページの HTML title 要素を指定するために使用します。 ページ タイトルは、@ Page ディレクティブの title 属性を使用するか、Title プロパティを設定する方法でも設定できます。

使用例

HtmlTitle コントロールを宣言的に使用する方法を次のコード例に示します。 <title> 要素は <head> 要素に含まれています。

<head runat="server">

   <title id="PageTitle" runat="server">
           HtmlTitle Control
    </title>

</head>
<head runat="server">

   <title id="PageTitle" runat="server">
           HtmlTitle Control
    </title>

</head>

参照

参照

HtmlTitle

その他の技術情報

HTML サーバー コントロール