Answer Posted / raji
ASP.NET 2.0 introduces a new concept known as Master Pages,
in which you create a common base master file that provides
a consistent layout for multiple pages in your application.
To create a Master Page, you identify common appearance and
behavior factors for the pages in your application, and move
those to a master page.
In the master page, you add placeholders called
ContentPlaceHolders where the content (child) pages will
insert their custom content. When users request the content
pages, ASP.NET merges the output of the content pages with
the output of the master page, resulting in a page that
combines the master page layout with the output of the
content page.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is session variable in c#?
Can you drink alcohol with a loop recorder?
Explain about finalize method?
Can a static class contain non static members?
What is hashmap in c#?
What are the extension methods in c#?
What is the difference between class and namespace?
What is the major difference between a custom control and user control?
Is static thread safe?
Constructor to an arbitrary base constructor?
Explain the difference between .net and c#?
Why do we use ienumerable in c#?
Is there a way of specifying which block or loop to break out of when working with nested loops?
What are native functions?
What is difference between yielding and sleeping?