Asp.net:我们可以在 ContentPage 中使用 MasterPage 的视图状态吗?

发布于 2024-08-20 21:35:05 字数 55 浏览 3 评论 0原文

Asp.net:我们可以在 ContentPage 中使用 MasterPage 的视图状态吗?

Asp.net: Can we use MasterPage's viewstate in ContentPage ?

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

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

发布评论

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

评论(1

入画浅相思 2024-08-27 21:35:05

在内容页中,您可以通过Master 属性引用MasterPage。在母版页上创建一个属性,使用其 getter 和 setter 将其值存储在 ViewState 中,如下所示:

string MyProperty
{
  get { return ViewState["MyProperty"] as string; }
  set { ViewState["MyProperty"] = value; }
}

显然,您可以通过测试空值和其他内容来使代码更安全...

这是重要的一点:Viewstate元素只能从添加它们的控件中访问,因此您需要引用树。

您还可以通过在 ASPX 文件中使用 <%@ MasterType %> 指令在 Page 上强类型化 Master 属性,因此:

<%@ MasterType VirtualPath="~/masters/SourcePage.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:

string MyProperty
{
  get { return ViewState["MyProperty"] as string; }
  set { ViewState["MyProperty"] = value; }
}

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 on Page by using the <%@ MasterType %> directive in your ASPX file, thusly:

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

HTH.

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