码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-03-04 19:28:07      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:findcontrol   母版页   找不到控件   

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

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

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


ContentPlaceHolder cphUp;

        Label lblLabel;

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

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




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

标签:findcontrol   母版页   找不到控件   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!