-2
嗨我得到錯誤InvalidCastException unhandled
請幫我解決這個問題。InvalidCastException更新gride視圖時未處理
string att =
((DropDownList)GridView1.Rows[e.RowIndex].Cells[0].Controls[0]).Text;
嗨我得到錯誤InvalidCastException unhandled
請幫我解決這個問題。InvalidCastException更新gride視圖時未處理
string att =
((DropDownList)GridView1.Rows[e.RowIndex].Cells[0].Controls[0]).Text;
嘗試使用的FindControl
DropDownList idCombo = (DropDownList)GridView1.Rows[e.RowIndex].Cells[0].FindControl("comboID");
string att = idCombo.SelectedValue;
嘗試使用的FindControl與ID,而不是控制[0] –
這是機器人?請提及您正在嘗試的技術? – cutebug