Condividi tramite


Sintassi dichiarativa per il controllo server HtmlTitle

Crea un controllo lato server mappato all'elemento HTML title.

<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>

Note

Utilizzare la classe HtmlTitle per specificare l'elemento HTML title di una pagina Web Form. Per impostare il titolo della pagina, è inoltre possibile utilizzare l'attributo title della direttiva @ Page o impostare la proprietà Title.

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare il controllo HtmlTitle in modo dichiarativo. L'elemento <title> è inserito nell'elemento <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>

Vedere anche

Riferimenti

HtmlTitle

Altre risorse

Controlli server HTML