Search code examples
asp.netmaster-pages

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


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


Solution

  • 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.