what is master pages how to use it. plase give one example
in code vice
Answer Posted / subodh kumar
Master page is inbuilt functionality in .Net2.0 or above.
While in .Net1.1 you must be create custom master page
using web user controls.
If you want to display the same section on more then one
page in your application then you can use master page.
A master page have content place holder where you can put
your code for different pages.
To use master page in your web application pages, you must
be include masterpage file name in the page directive. like:
<@ page MasterPage="MyMasterpage.master" .......>
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is IFormatable
What are predicates in c#?
What is difference between a type and class?
What is a protected class in c#?
Is null in c#?
What is the difference between list and arraylist in c#?
Is string immutable in c#?
What is data types in c#?
Why it's said that writing into .NET Application Configuration Files is a Bad Idea?
What is xaml in c#?
How to declare a property in a class?
What are the types of methods in c#?
Explain About ADO and its objects
How can we sort the elements of the array in descending order?
what is IComparable