Standard Header From Masterpage
The master page above is a regular HTML template page designed for other pages. The **@ Master** directive defines it as a master page. The master page contains a placeholder tag **** for individual content. The **id="CPH1"** attribute identifies the placeholder, allowing multiple placeholders in the same master page. This master page is saved as **"master1.master"**.  Note: Master pages can also contain code, allowing dynamic content. * * * ## Content Page ExampleIndividual Content
Paragraph 1
Paragraph 2
The content page above is one of the individual content pages in the site. The **@ Page** directive defines it as a standard content page. The content page contains a content tag **** that references the master page (ContentPlaceHolderId="CPH1"). This content page is saved as **"mypage1.aspx"**. When a user requests this page, ASP.NET merges the master page with the content page. [Click here to display mypage1.aspx](#) Note: Content text must be placed inside the tags. Content text outside the tags is not allowed. * * * ## Content Page with Controls
YouTip