c# – 嵌套的Masterpages和.FindControl

前端之家收集整理的这篇文章主要介绍了c# – 嵌套的Masterpages和.FindControl前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在一个站点上,我只使用单级主页,在使用该主页的页面中,我可以执行此操作.Master.FindControl(“controlName”)来访问该控件.工作良好.

但是,在具有两个母版页级别的站点上使用相同的代码.以MainMaster为主的MainMaster和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!"

来自子页面内容被加载到第一个母版页控件中,随后将其加载到祖父母母版页中.

原文链接:https://www.f2er.com/csharp/92557.html

猜你在找的C#相关文章