动态创建控件:
tc = new TableCell();     
DropDownList DDL = new DropDownList();
DDL.ID = "DDL" + iCount.ToString();
DDL.Style.Add("Width", "100%");
tc.Controls.Add(DDL);现在我想获得这些DropDownList 控件的当前项,我该怎么做呢?