我在每行的ListView中都有DropDownList和一个按钮。现在我想在Button click事件中获取下拉列表的选定值。我怎么能得到这个。
请指导我。
感谢。
答案 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;