在ListView中单击按钮时获取dropdownlist selectedvalue

时间:2011-10-31 13:56:13

标签: c# asp.net

我在每行的ListView中都有DropDownList和一个按钮。现在我想在Button click事件中获取下拉列表的选定值。我怎么能得到这个。

请指导我。

感谢。

3 个答案:

答案 0 :(得分:2)

设置按钮的CommandName属性,处理列表视图的ItemCommand事件,并使用FindControl查找DropDownList。

供参考,see

答案 1 :(得分:0)

DropDownList.SelectedValue将获得当前选定的值。

答案 2 :(得分:0)

编辑:第二个想法,使用 TC的回答。


按钮点击事件中的

执行以下操作:

Button b = (Button)sender;
DropDownList ddl = (DropDownList)b.Parent.FindControl("DropDownList ID");
string DropDownListSelectedValue = ddl.SelectedValue;