日期:2014-05-19  浏览次数:20427 次

如何实现DropDownList下拉多选功能?分不够可以给,在线等!
如何实现DropDownList下拉多选功能?好像在winform中有个控件可以实现

------解决方案--------------------
dropdownlist.attributes.add( "multiple ", "multiple ");

这样就是平板的了...
------解决方案--------------------
html的select可以实现
你用个html的select,然后加个runat=server让它在服务器段运行,估计这样可以。
------解决方案--------------------
this.DropDownList1.Attributes.Add( "multiple ", "multiple ");
this.DropDownList1.Attributes.Add( "size ", "1 ");
------解决方案--------------------
如果这样的话,就跟html的select功能一样了.^_^
------解决方案--------------------
DropDownList只能选择当前的一个对象

可以变相解决这个问题 如
http://www.cnblogs.com/huangwen/archive/2007/02/02/638378.html
==============
我看是用 层+多个checkbox做的
希望对你有所帮助