Does there exists a listbox control in ASP.NET which allows multiple columns an开发者_StackOverflow中文版d multiple selection?
I looked but couldn't find, so what options do I have available now?
Not natively, you might need a third party library or create your own. I have used DevExpress for this purpose before.
I'm afraid you won't be able to do it with normal asp .net ListBox control. Telerik Listbox supports list item templating, which allows you to have even a whole table of data within a list box item.
this is possible all you have to do is to set it grammatically read this https://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.multicolumn(v=vs.110).aspx
精彩评论