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 happens if you inherit multiple interfaces and they have conflicting method names?
What is the reason behind the invention of c#?
Is the following code legal?
Difference between a sub and a function in c#.
Is c# different than c++?
what is a static constructor?
What are the properties of string?
What are the advantages of interface in c#?
Which types of inheritances does c# support?
What is the difference between add and addrange in c#?
What are namespaces, and how they are used?
What is yield in c#?
Can int be null c#?
Can I use ReaderWriterLock instead of Monitor.Enter/Exit for Threading?
what is the Difference between the public and private ?