I have a page where I need to allow user to add multiple options like this
Text box (type here and click add)
Listbox ( added to listbox)
Does ajaxcontrol toolkit has any such control ?
Please suggest
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are looking to add list items to a listbox on clicking add, surely listbox can do that. You only have to call listBox.Items.Add(yourItem)
If you are looking for all that in one control, no, it does not have that sort of a control.
But it should be fairly easy to make a user control or custom control that did that.
On the textchange event or add button click, create a new ListItem and add it to the list of Items.