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
Is c# a technology?
What is reflection c#?
How do you use nullable?
What's the difference between WindowsDefaultLocation and WindowsDefaultBounds?
Explain synchronous and asynchronous operations?
Define mutex in C#?
What is wrong with the sample program below?
What is the difference between do and while loop?
What is the difference between field and property in c#?
What is encapsulation in csharp?
What is msil in c#?
How can I use .NET components from COM programs?
How does array sort work?
What does using do in c#?
What is default value of decimal c#?