multiple selection
-
hai friends, i displayed some name in a list box..when i click on that name that will display on text box..that is working...i want select multiple name..eg:one name we already selected...den put a comma on text box..then we click on the name,that will display on text box followed by first one..how to do this
-
hai friends, i displayed some name in a list box..when i click on that name that will display on text box..that is working...i want select multiple name..eg:one name we already selected...den put a comma on text box..then we click on the name,that will display on text box followed by first one..how to do this
-
To select multiple names in a listbox just hold down the CTRL button and click the items from the list
Set the Selection Mode property to ' Multiple ' and then u can select multiple item by pressing Ctrl Key
VanithaVasu
-
hai friends, i displayed some name in a list box..when i click on that name that will display on text box..that is working...i want select multiple name..eg:one name we already selected...den put a comma on text box..then we click on the name,that will display on text box followed by first one..how to do this
HI 1)Set selectionmode="multiple" of list box to enable multiple selection. 2) You can select multiple names using ctr+mouseclick. 3)To retrive all selected names from listbox you can use: Request.Form("listbox_Name").ToString() function, which will return all selected items in a listbox into a string. :laugh:
Arun Singh Noida.