母板面嵌套,找到控件。
//MasterPage 单个
//TextBox tb = (TextBox)Page.Master.FindControl(CONTENT_NAME).FindControl("txt" + i);
//MasterPage 嵌套
TextBox tb = this.Master.Master.FindControl(CONTENT_NAME).FindControl(CONTENT_NAME).FindControl("txt" + i) as TextBox;