当前位置:  开发笔记 > 编程语言 > 正文

获取所有DropDown列表的选定选项

如何解决《获取所有DropDown列表的选定选项》经验,为你挑选了0个好方法。

我试图在我的页面上获取所有下拉列表,并在每个下拉列表中选择所选项目文本/值.但我似乎错过了一些东西.

foreach (DropDownList dr in this.Page.Form.Controls.OfType()) {
    foreach (ListItem li in dr.Items) {
            if (li.Selected) {
            //put the selected items value/text into something.
        }
    }
}

有没有想过这样做?

编辑:使其更清晰.我有一个随机数量的DropDownLists,我可以选择1个选项pr Dropdownlist.当我按下按钮时,我需要从每个DropDownLists中选择的内容中获取信息.(DropDownLists上没有ID,有一个随机数).

推荐阅读
可爱的天使keven_464
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有