母版页和母版页的基类是什么? asp.net c# 中的用户控制?
母版页和母版页的基类是什么? asp.net c# 中的用户控制?
What is the base class of master page & User Control in asp.net c#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
母版页和母版页的基类是什么? asp.net c# 中的用户控制?
What is the base class of master page & User Control in asp.net c#?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
MasterPage 的继承树是:(
取自 MasterPage类)
从中您可以看到 UserControl 类,UserControl 也继承自 TemplateControl,然后是 Control,最后是 Object。
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.
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...
MasterPage继承自System.Web.UI.UserControl。
UserControl继承自System.Web.UI.TemplateControl。
MasterPage inherits from System.Web.UI.UserControl.
UserControl inherits from System.Web.UI.TemplateControl.