What are Master pages? How to define a Master page?

Answers were Sorted based on User's Feedback



What are Master pages? How to define a Master page?..

Answer / bachi

ASP.NET master pages allow you to create a consistent layout
for the pages in your application. A single master page
defines the look and feel and standard behavior that you
want for all of the pages (or a group of pages) in your
application. You can then create individual content pages
that contain the content you want to display. When users
request the content pages, they merge with the master page
to produce output that combines the layout of the master
page with the content from the content page.

Is This Answer Correct ?    7 Yes 1 No

What are Master pages? How to define a Master page?..

Answer / guest

Master Page: Most of the website pages with in an appl have
common info
say as Menu, then we create a master page which can be
shared by most aspx content pages.
Master page is a template that can be used as a foundation
to all other ASP>Net content pages.

Is This Answer Correct ?    3 Yes 2 No

What are Master pages? How to define a Master page?..

Answer / rajesh kadam

Asp.net master page is used to look and fill is comman in
all pages.it defines content place holder
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

Can we override the enablepartialrendering property of the scriptmanager class?

0 Answers  


Difference between web.config and app.config?

3 Answers   ITC Infotech, Jenesys Technologies,


What base class do all Web Forms inherit from?

8 Answers  


Define a web service in .net?

0 Answers  


Which is faster viewbag or viewdata?

0 Answers  






What is difference between Server.Transfer and Response.Redirect in ASP.NET?

0 Answers   Sans Pareil IT Services,


How can you identify that the page is post back?

0 Answers  


What is web router?

0 Answers  


How many types of Cookies are available in ASP.NET?

0 Answers   MindCracker,


Why is string called immutable data type?

0 Answers  


What is actually returned from server to the browser when a browser requests an .aspx file and the file is displayed?

0 Answers   MindCracker,


Where is ViewState information stored?

18 Answers   DSRC, HCL,


Categories