在母版页中定义派生类 (c#)

发布于 2024-08-04 01:57:58 字数 288 浏览 5 评论 0原文

我的项目在默认页面类的派生类上扩展的所有 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 技术交流群。

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

发布评论

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

评论(4

吖咩 2024-08-11 01:57:59

在 master 中,创建一个新属性:

public new MyDerivedPage Page { get { return (MyDerivedPage) base.Page; } }

In the master, create a new property:

public new MyDerivedPage Page { get { return (MyDerivedPage) base.Page; } }
但可醉心 2024-08-11 01:57:59

我不确定你的意思是“它假设我仍在使用 System.Web.UI.Page”。你的意思是 this.Page 的数据类型是 System.Web.UI.Page 但您希望它是 MyDerivedClass

如果是这样,那么就无法更改您可以创建自己的属性来“隐藏”现有的属性,但实际上无法更改它。

public MyDerivedClass Page
{
    get { return (MyDerivedClass)base.Page; }
}

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 of this.Page is System.Web.UI.Page but you were expecting it to be MyDerivedClass?

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.

public MyDerivedClass Page
{
    get { return (MyDerivedClass)base.Page; }
}
冰雪梦之恋 2024-08-11 01:57:59

我假设您需要在新类中覆盖 System.Web.Ui.Page 的页面字段。

I would assume you need to override the page field of the System.Web.Ui.Page in your new class.

氛圍 2024-08-11 01:57:59
var page = (myderivedclass) this.page;
var page = (myderivedclass) this.page;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文