获取不带强制转换的 Page.Master 实例
我正在尝试获取不带强制转换的母版页实例。
像这样但没有演员
var masterPage = (MasterPageName)Page.Master;
if (masterPage != null) {
masterPage.Foo = false;
}
有什么解决方法吗?
谢谢
I am trying to get a master's page instance without cast.
Something like this but without cast
var masterPage = (MasterPageName)Page.Master;
if (masterPage != null) {
masterPage.Foo = false;
}
Is there any workaround for this?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会让 MasterPageName 实现一个定义了布尔值 Foo 的接口 IFoo,因此在上面的代码中,您可以检查 Page.Master 是否是 IFoo 并且不需要任何强制转换。
I would make MasterPageName to implement an interface IFoo which has the boolean Foo defined, so in your code above you could check if Page.Master is IFoo and you do not need any cast.