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

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

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


ContentPlaceHolder cphUp;

        Label lblLabel;

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

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