如何访问母版页中的枚举

发布于 2024-08-18 09:55:20 字数 44 浏览 3 评论 0原文

我们可以访问母版页中定义的枚举吗?我在自己的博客上读到了有关母版页的信息。

Can we access an enum which has been defined in the master page. I read about the master page on my own blog.

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

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

发布评论

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

评论(1

£噩梦荏苒 2024-08-25 09:55:20

如果您指的是实际的enum,那么在其他地方定义它是一个更好的选择,但下面相同的转换也可以实现它。

如果您想访问 enum 属性,请将页面的 Master 属性强制转换为母版页的类型。像这样:

protected void override OnLoad(EventArgs e)
{
  ((MyMasterPagesType)Master).MyEnumProperty = MyEnum.Value;
}

编辑:

差点忘了,您还可以使用 @MasterType 指令 在您的 aspx 标记中。

<%@ MasterType VirtualPath="~/masters/SourcePage.master”" %>

If you mean an actual enum, defining it elsewhere is a better option, but the same casting below works to get at it as well.

If you want to access the property that is an enum then cast the Master property of your page to your master page's type. Like this:

protected void override OnLoad(EventArgs e)
{
  ((MyMasterPagesType)Master).MyEnumProperty = MyEnum.Value;
}

Edit:

Almost forgot, you can also have the Master property on your page already behave as this type by using the @MasterType directive in your aspx markup.

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