asp.net 内联覆盖
如果我在 .aspx 页面上编写内联代码,是否可以覆盖 .aspx 直接继承的类的 onLoad?
现在,如果我在 .aspx 页面上覆盖 base.onLoad 内联,它将覆盖“Page”对象的 onLoad 事件,而不是 .aspx 继承的类。
感谢您的帮助。
If I'm writing in-line code on a .aspx page is it possible to override the onLoad of the class that the .aspx is directly inheriting from?
Right now if I do the override the base.onLoad inline on the .aspx page it is overriding the "Page" object's onLoad event not the class the .aspx is inheriting from.
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试在 aspx 页面中创建内联类?
然后让你的 aspx 标头继承自 MyPage
Did you try creating a class inline in your aspx page?
and then have your aspx header inherit from MyPage