热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Asp.net如何获取ListBox控件的多个选中值...???

ListBox.SelectedItem.Value可以获取当前被选中的一个值.但如果ListBox同时有多个值被选中应该如何获取这些值呢?
ListBox.SelectedItem.Value可以获取当前被选中的一个值.但如果ListBox同时有多个值被选中应该如何获取这些值呢?

12 个解决方案

#1


you need to go through each item

foreach (ListItem li in YourListBox.Items)
{
  if (li.Selected)
    ....
}

or

string[] s = Request.Form.GetValues(YourListBox.UniqueID);

#2


saucer老大又来抢我的位置了~~顶一个先

#3


学习

#4


for i=0 to listbox.items.count-1

listbox.item(i).selected

next

#5


foreach就好了,思归大哥已经说过了.

#6


学习foreach

#7


用forcach更方便一些

#8


up and study!

#9


for(int i=0;i {
   if(ListBox.Item[i].selected)
    {
       Your's Code
    }
}

#10


还是老大的string[] s = Request.Form.GetValues(YourListBox.UniqueID);这个好用

#11


up

#12


string[] s = Request.Form.GetValues(YourListBox.UniqueID)

推荐阅读
author-avatar
Cherish雪蕊诗_425
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有