在.net 2.0 中如果使用了masterPage,则不能像以前那样使用 FindControl,则需要使用如下方法

先找到ContentPlaceHolder,然后再找在这个ContentPlaceHolder中的你要找的控件

.Page.Master.FindControl(masterPageContentPlaceHolderID).FindControl(m_strSetDataToID);

相关文章: