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
Why to use “finally” block in c#?
What is CLR and its application.?
What is the example of predicate?
How do I format in c#?
How long does it take to learn c# programming?
Is type nullable c#?
What is difference between ienumerable and iqueryable in c#?
What are the two uses of a ‘using’ statement in c#?
What is a template class?
What is the extension of c# file?
What is interface c#?
What is meant by console programming?
What is javascriptserializer c#?
Can we inherit static class in c#?
Explain the difference between a sub and a function in c#.