gpt4 book ai didi

c# - 嵌套母版页和 .FindControl

转载 作者:太空狗 更新时间:2023-10-29 18:07:58 26 4
gpt4 key购买 nike

在一个网站上,我只使用一个单一级别的母版页,在使用该母版的页面中,我可以这样做。Master.FindControl("controlName") 来访问控件。工作正常。

但是,在具有两个母版页级别的网站上使用相同的代码。 MainMaster 和以 MainMaster 作为 Master 的 SpecificMaster。

因此在使用 SpecificMaster 的页面上,FindControl 为该对象返回 null。我看到的唯一区别是母版页的嵌套。

当我设置断点并查看 page.Master 时,它显示 SpecificMaster 并且 SpecificMaster 正确地将 MainMaster 显示为它的主控,但 FindControl 仍然失败。

当我在 IE 中查看源代码时,控件已正确命名,没有进行 .NET 修改。

有什么想法吗?

TIA!

最佳答案

当您嵌套母版页时,您将获得一个额外的容器“内容”,您需要浏览它。

因此,如果您尝试从给定的子页面使用 FindControl,通常的方法会产生以下效果:

Label myLabel = (Label)this.Master.FindControl("myLabel");
myLabel.Text = "Success!";

因为我们有一个嵌套的母版页,子母版中有“myLabel”,所以这个控件将包含在一个内容控件中。

因此,这会将代码更改为:

ContentPlaceHolder ph = (ContentPlaceHolder)this.Master.Master.FindControl("yourContentPane");

Label myLabel = (Label)ph.FindControl("myLabel");
myLabel.Text = "Success!";

VB.NET

Dim ph As ContentPlaceHolder = DirectCast(Me.Master.Master.FindControl("yourContentPane"), ContentPlaceHolder)

Dim myLabel As Label = DirectCast(ph.FindControl("myLabel"), Label)
myLabel.Text = "Success!"

子页面的内容被加载到第一个母版页控件中,该控件随后被加载到祖 parent 版页中。

关于c# - 嵌套母版页和 .FindControl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1578188/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com