Answer: Master Page works as a parent page for all child pages. There will be some area in master page, which will be used to replace the content of master page with the child page's content. That area is called ContentPlaceHolder.
<asp:ContentPlaceHolder ID="Body" runat="server">
</asp:ContentPlaceHolder>
Over here, content of child page will be displayed.
Asked In: Many Interviews |
Alert Moderator