What is the base class of master page & User Control in asp.net c#?
|
|
|||||
|
|
|
The inheritance tree of a MasterPage is:
(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. |
||
|
|
|
|
MasterPage inherits from System.Web.UI.UserControl. UserControl inherits from System.Web.UI.TemplateControl. |
||
|
|
|
|
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... |
||
|
|
