0

asp.net c#中母版页和用户控件的基类是什么?

4

3 回答 3

1

MasterPage 的继承树是:

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

(取自MasterPage 类

从中您可以看到在UserControl 类上确认的内容,即 UserControl 也继承自 TemplateControl,然后是 Control,最后是 Object。

于 2009-09-21T08:25:28.387 回答
0

System.Web.UI.MasterPage 用于 MasterPages 和 System.Web.UI.UserControl 用于用户控件。

如果这不能回答您的问题,请告诉我...

于 2009-09-21T07:19:50.530 回答
0

MasterPage 继承自 System.Web.UI.UserControl。

UserControl 继承自 System.Web.UI.TemplateControl。

于 2009-09-21T07:20:16.120 回答