如何访问母版页中的枚举
我们可以访问母版页中定义的枚举吗?我在自己的博客上读到了有关母版页的信息。
Can we access an enum which has been defined in the master page. I read about the master page on my own blog.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您指的是实际的
enum
,那么在其他地方定义它是一个更好的选择,但下面相同的转换也可以实现它。如果您想访问
enum
属性,请将页面的Master
属性强制转换为母版页的类型。像这样:编辑:
差点忘了,您还可以使用 @MasterType 指令 在您的 aspx 标记中。
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 theMaster
property of your page to your master page's type. Like this: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.