为什么FindControl找不到new出来的控件
Button btnAdd = new Button();
btnAdd.Text = "111111111111111";
this.tableTwo.Rows[0].Cells[0].Controls.Add(btnAdd);
Button btnAdd = (Button)this.FindControl("btnAdd");
Response.Write(btnAdd.Text);
为什么这样在cs文件里new的控件,用FindControl找不到?
异常详细信息: System.NullReferenceException: 未将对象引用设置到对象的实例。
源错误:
行 108: Button btnAdd = (Button)this.FindControl("btnAdd");
行 109:
行 110: Response.Write(btnAdd.Text);
行 111: }
行 112: }