DataGrid 中 FindControl 的问题
页面上有一个DataGrid,ID为DataGrid1,它的模板列中有一个控件,ID为DropDownList1,对DataGrid1进行数据绑定后,执行以下语句,dl却是空的,为什么呢?
DropDownList dl=(DropDownList)DataGrid1.Items[0].FindControl("DropDownList1");
不管是放在private void Page_Load(object sender,System.EventArgs e)
{
}中,还是模板列中编辑按钮被按下时
private void DataGrid1_EditCommand(object source,System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
}中,都是空的.
请问,怎么进行Item行的类别判断呢?