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

发布于 2024-08-05 02:53:08 字数 40 浏览 3 评论 0原文

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

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

初与友歌 2024-08-12 02:53:08

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。

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.

ゃ懵逼小萝莉 2024-08-12 02:53:08

System.Web.UI.MasterPage 用于母版页,System.Web.UI.UserControl 用于用户控件。

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

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

婴鹅 2024-08-12 02:53:08

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

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

MasterPage inherits from System.Web.UI.UserControl.

UserControl inherits from System.Web.UI.TemplateControl.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文