what is master pages how to use it. plase give one example
in code vice
Answer / 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 |
What is jit (just in time)?
Explain About the Sattilite Assembly in .Net Technology?
Where is c# compiler located?
Can we make a Static Constructor Parameterized? Give Reason with your answer
Why do we need a finally block in try catch block while handling exceptions
What is difference between class and interface in c#?
Explain manifest & metadata.
How can you overload a method?
Method1() { int a=0, b=0, c=0; Monitor.Enter(this) c = 12; b = 3; a = c/b Moniter.Exit(this) } Method1() { int a=0, b=0, c=0; c = 12; b = 3; lock(this){ a = c/b } } Choose correct answer. a. Upon completion, Method1 and Method2 release the lock b. Upon Comletion, Method1 release the lcok and Method2 not. c. Upon Completion, Method2 release the lock and Method1 not. d. Upon Completion, neither Method1 or Method to release the lock.
Why multiple Inheritence is not used in C#?
What happens during the process of boxing?
What is orm in c#?