What is the difference between User Controls and Master Pages
Answer Posted / e l v prasad
Master Page:
1. It is a template and however it has all the events as
applicable to the web page.
2. It can be designed in one language and can be used for
the web pages of all the .NET supported languages.
3. Master Page can be assigned in web.config file so that
the web pages in the project will automatically use Master
page.
4. Master Page can be used for web page within a specific
folder by declaring a web.config file for that.
5. Master Page contents in the Content Page will be
displayed while working with the application.
6. Master Page contents which not editable in the Content
Page will be displayed in the gray color.
7. Duplication of templates is not possible with the master
pages.
User Control:
1.It is designed from the existing controls in the .NET. It
has to be registered witha @Regisgiter page directive.
2.Designing of User control in one language and can't be
used in web pages of all the .NET compliant languages.
3. It must be registered in each and every web page, where
it has to be used.
4. There is no scope to use the User Control to a web pages
within a specific folder or project like Master Page
5. User Control contents will not be displayed during
design time.
6. All the User control contents will appear in web pages
as gray color and there is no scope to change editable
template contents as in Master Pages.
7. There is a possibility of duplication in web pages with
the User Controls
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How does session id work?
What is the differences between a primary key and a unique key in sql server?
Differentiate between namespace and assembly.
Can we handle the error and redirect to some pages using web.config?
Are cookies stored on server or client?
Will the asp.net validators run in server side or client side?
Dataset is the disconnected environment. suppose if you are binding records to gridview (disconnected environment) and you are making changes to the the grid but before updating the database if any other user modify the data, how will you avoid such problem?
How do cookies work? Give an example of their abuse.
What is session and application variable in asp net?
Why session is more secure than cookies?
What are the features of asp net?
What is Dynamic Web and discuss its usage with the help of real life examples?
What do you mean by query string?
How will you load dynamic assembly? How will create assesblies at run time?
What is the use of execute non query in asp.net?