vote up 0 vote down star

What is the base class of master page & User Control in asp.net c#?

flag
Why not create one of each and look at the source code? – Christian Hayter Sep 21 at 7:23
You can see this quite easily in Visual Studio. Where it says "System.Web.UI.MasterPage" put your cursor on MasterPage, press F12 or choose "Go To Definition" from the context menu. Repeat as required. – RichardOD Sep 21 at 8:31

3 Answers

vote up 1 vote down

The inheritance tree of a MasterPage is:

System.Object
 System.Web.UI.Control
  System.Web.UI.TemplateControl
   System.Web.UI.UserControl
    System.Web.UI.MasterPage

(taken from MasterPage class)

From that you can see what's confirmed on UserControl class, that UserControl also inherits from TemplateControl, then Control and finally Object.

link|flag
vote up 0 vote down

MasterPage inherits from System.Web.UI.UserControl.

UserControl inherits from System.Web.UI.TemplateControl.

link|flag
vote up 0 vote down

System.Web.UI.MasterPage for MasterPages and System.Web.UI.UserControl for User Controls.

Please let me know if that doesn't answer you question...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.