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

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

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

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


ContentPlaceHolder cphUp;

        Label lblLabel;

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

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




你可能感兴趣的:(FindControl,母版页,找不到控件)