-2

嗨我收到错误InvalidCastException unhandled请帮助我克服这个问题。

string att = ((DropDownList)GridView1.Rows[e.RowIndex].Cells[0].Controls[0]).Text;

4

1 回答 1

0

尝试使用FindControl

 DropDownList idCombo = (DropDownList)GridView1.Rows[e.RowIndex].Cells[0].FindControl("comboID");

 string att = idCombo.SelectedValue; 
于 2013-05-20T11:33:21.940 回答