イベント templatefield
内の値を取得する方法を知っています:RowDataBound
Control ctrl = e.Row.FindControl("Drop_Responsaveis");
DropDownList ddl = ctrl as DropDownList;
ddl.items.add(something);
しかし、イベントでその値を取得する必要がありbutton_Click
ます...どうすればそれを行うことができますか?
@Siz S 回答による解決策
foreach (GridViewRow gvr in GridView1.Rows)
{
string str = ""
Control ctrl = gvr.FindControl("Drop_Responsaveis");
if (ctrl != null)
{
DropDownList ddl = ctrl as DropDownList;
str= ddl.SelectedItem.ToString();
}
}