在母版页中定义派生类 (c#)
我的项目在默认页面类的派生类上扩展的所有 Web 表单/页面。
即而不是
public 部分类 myfirstpage:System.web.ui.page {}
我有 public 分部类 myfirstpage:mydrivenclass {}
但是,在母版页的代码隐藏中,如果我执行“this.page
”,则假定我仍在使用 system.web.ui.page。
有人知道我如何更改我的新派生类吗?
All of the web forms / pages that my project extend on a derived class for the default page class.
I.e. instead of
public partial class myfirstpage:System.web.ui.page
{}
i have public partial class myfirstpage:myderivedclass
{}
However in the codebehind of the masterpage, if i do 'this.page
' it assumes im still using system.web.ui.page.
Anyone know how i can change this my new derived class instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 master 中,创建一个新属性:
In the master, create a new property:
我不确定你的意思是“它假设我仍在使用
System.Web.UI.Page
”。你的意思是this.Page
的数据类型是System.Web.UI.Page
但您希望它是MyDerivedClass
?如果是这样,那么就无法更改您可以创建自己的属性来“隐藏”现有的属性,但实际上无法更改它。
I'm not sure what you mean by "it assumes I'm still using
System.Web.UI.Page
. Do you mean that the data type ofthis.Page
isSystem.Web.UI.Page
but you were expecting it to beMyDerivedClass
?If that's the case, then there's no way to change that data type. You can create your own property that "hides" the existing one, but you can't actually change it.
我假设您需要在新类中覆盖 System.Web.Ui.Page 的页面字段。
I would assume you need to override the page field of the System.Web.Ui.Page in your new class.