What is Master Page in Asp.net?

Answers were Sorted based on User's Feedback



What is Master Page in Asp.net?..

Answer / prashanthi

Master Page means in name itself it lies.
MasterPage is a Common Page for all the SubPages.
Without going to SubPages Separately,We can goto SubPages
directly by clicking on Master Page.
It reduces the Work.
This Current Page is an best Example to understand about
MasterPage.
In MasterPage we most prefer treeview to go for subpages.

Is This Answer Correct ?    21 Yes 4 No

What is Master Page in Asp.net?..

Answer / venkat

Master pages let you make a consistent layout for your
application, you can make one master page that holds the
layout/look & feel and common functionality of your whole
application and upon this master page, you can build all
the other pages, we call these pages Content Pages. So
simply you can build your master page and then build
content pages, and while creating the content pages you
bind them to the master page you have created before, those
two pages are merged at runtime to give you the rendered
page

Is This Answer Correct ?    8 Yes 3 No

What is Master Page in Asp.net?..

Answer / subramaniam

Master pages are used to giving common layout for our
applications.
we never change our header,footer.
we should change body using content place holder.
this is very useful for reuseful components of our web page

Is This Answer Correct ?    7 Yes 2 No

What is Master Page in Asp.net?..

Answer / vikas67k

master page is the way to centralize the common
functionality of pages. common functionalities like:
header, footer of page, logo or the site name.
All controls which are placed in the content page or the
child page are within the ContentPlaceHolder which is a
child control of the master page.
now master page is merged and treated like a control in the
content page.

Is This Answer Correct ?    3 Yes 1 No

What is Master Page in Asp.net?..

Answer / somnath banerje

master page is main ly used for designing perpose it is
common to all the pages in the application

Is This Answer Correct ?    1 Yes 0 No

What is Master Page in Asp.net?..

Answer / wai zin

A master page is similar to an ordinary ASP.NET web form.
Like a web form, the master page can include HTML, web
controls, and code (either in an inline script block or in a
separate file).The difference between master pages and
ordinary web forms is that master pages can use the
ContentPlaceHolder control, which isn’t allowed in ordinary
pages. The ContentPlaceHolder is a portion of the page
where the content page can insert content.When you create a
new master page in Visual Studio, you start with a blank
page that includes two ContentPlaceHolder controls. One is
defined in the <head> section, which gives content pages the
ability to add page metadata, such as search keywords and
stylesheet links. The second, more important
ContentPlaceHolder is defined in the <body> section, and
represents the displayed content of the page.

Is This Answer Correct ?    1 Yes 0 No

What is Master Page in Asp.net?..

Answer / satish m

Master page is the STATIC page.It is mainly for legal
authentication and for security

Is This Answer Correct ?    2 Yes 2 No

What is Master Page in Asp.net?..

Answer / rajesh

Master page containing one or more sub forms

Is This Answer Correct ?    0 Yes 0 No

What is Master Page in Asp.net?..

Answer / sankar

system.web.ui.page

Is This Answer Correct ?    5 Yes 12 No

Post New Answer

More ASP.NET Interview Questions

How can we do the client side validation and Server side validations? But i told that At client side by with the help of validations control or by javascript? But I dont know about the Server side controls Explain?

5 Answers   iSoft, TCS,


How many types of validation controls are provided by ASP.NET?

8 Answers  


What is the best way to search any exact information on google?

3 Answers   Intellevate,


Hey I am using asp.net mvc architecture. I creating one dropdownlist using <select id="State" name="State"></select> this is dynamic list.Its displaying properly. But in time of Edit.If i load a page dropdownlist is not displaying the item which is stored in table.

1 Answers  


How do you handle session management in ASP.NET and How do you implement them. How do you handle in case of SQLServer mode?

1 Answers   DELL, Microsoft,






what are the oops concepts are used in your project?

1 Answers   AppShark, IBM, Kotak,


What is FullTrust? Do GACed assemblies have FullTrust?

2 Answers  


True or False: To test a Web service you must create a windows application or Web application to consume this service?

1 Answers  


What is the difference between dispose() and finalize()?

0 Answers  


Explain the use of duration attribute of @outputcache page directive.

0 Answers  


You have two buttons in web form and i clicked on one of the button, so how do i find which button i've clicked on the form in my page load?

15 Answers   INDUS,


How to prevent client side validation from the ASP.NET validation controls?

0 Answers   Viscus Infotech,


Categories