首页 > 其他 > 详细

在有母版页的页面里使用FindControl的困惑

时间:2015-03-04 19:27:25      阅读:102      评论:0      收藏:0      [点我收藏+]

当前页 引用了母版页,用FindControl会找不到控件。

FindControl 方法只搜索页的直接或顶级容器;它不在页所包含的命名容器中递归搜索控件。

也就是FindControl可以找到ContentUpContentDown但是找不到LabelTextButton


ContentPlaceHolder cphUp;

        Label lblLabel;

        cphUp = (ContentPlaceHolder)Master.FindControl("ContentPlaceHolder1");

        lblLabel = (Label)cphUp.FindControl("lblInfo");




在有母版页的页面里使用FindControl的困惑

原文:http://zhaoyingyatou.blog.51cto.com/7151735/1617212

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!