private void DropDownList1_SelectedIndexChanged(object sender, System.EventArgs e)
{
//要在这里找到放在Datagrid 的footer的控件。怎样找到,请高手指教。 
foreach(DataGridItem i in DataGrid1.Items)
{
if (i.ItemType==ListItemType.Footer)
{
DropDownList ddl =(DropDownList)i.Cells[0].FindContrl("DropDownList1");
//Cells对应所在的列
}
}
}