Asp.net:我们可以在 ContentPage 中使用 MasterPage 的视图状态吗?
Asp.net:我们可以在 ContentPage 中使用 MasterPage 的视图状态吗?
Asp.net: Can we use MasterPage's viewstate in ContentPage ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在内容页中,您可以通过
Master
属性引用MasterPage。在母版页上创建一个属性,使用其 getter 和 setter 将其值存储在 ViewState 中,如下所示:显然,您可以通过测试空值和其他内容来使代码更安全...
这是重要的一点:Viewstate元素只能从添加它们的控件中访问,因此您需要引用树。
您还可以通过在 ASPX 文件中使用
<%@ MasterType %>
指令在Page
上强类型化Master
属性,因此:HTH。
From a Content Page you can refer to a MasterPage through the
Master
Property. Create a Property on the Master Page that uses its getter and setter to store its value in ViewState, like so:Obviously you could make that code safer by testing for nulls and what-not...
Here's the important bit: Viewstate elements are only accessible from the controls that added them so you need to refer back up the tree.
You can also strongly type the
Master
property onPage
by using the<%@ MasterType %>
directive in your ASPX file, thusly:HTH.