What are the suggested controls for two lists for selecting items
I want to create a wap page that contains the following:
- Source list to choose from
- Distination list, contains check box for each item
- Move, Return buttons between the lists
What are the suggested asp.net开发者_运维问答 controls for the list to appear with the same look simply?
I think I have these options:
- Listbox & CheckBoxList (The problem is they doesn't have the same look)
- Two ListView or GridView (They're a bit complitcated to work with with very simple task)
Thanks.
The question is a little vague on how these lists are behaving and interacting with each other. However, you may not need ASP .NET controls to handle what you're trying to do. There's a lot you can do with lists of items on a web page using jQuery UI.
If the list aren't too long I would use two list boxes and two buttons in tbetween them. One button would remove selected items and the other one would add.
精彩评论