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 Forms 페이지의 HTML title 요소를 지정합니다. @ Page 지시문의 제목 특성을 사용하거나 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>