把ListBox的属性设为:SelectionMode=Multiple可以实现ListBox的多选功能.要获取这些选中的ListItem,在WinForm下轻而易举! this.lst_AXzhz.SelectedItems; 但在ASP.NET下却要麻烦一些!(也可通过脚本实现.麻烦,只用在不进行PostBack的情况下,就不说了.) ListItemCollection items = new ListItemCollection(); foreach (ListItem item in this.lst_AXzhz.Items) } 博客园→斧头帮少帮主 相关文章: 2022-12-23 2021-06-13 2022-12-23 2021-09-25 2022-12-23 2021-11-21 2022-12-23 2021-07-26