Ask a Question related to ASP, Design and Development.
-
darren #1
Remove multiple selected items listbox
How, using asp.net (vb.net), can I remove multiple
selected items from a listbox. Everything I try does not
seem to work. Thanks in advance.
darren Guest
-
Populating listbox with selected items
Hi All, I've got a form on which a customer's record is edited/updated. There is a listbox that should show a full list of options with only the... -
.Selected property for listbox does not work
Hi I have written a code for showing the list boxes as selected using a Listitem and the selected property of the items. Now I have 2 list boxes... -
how i can get the name of a selected element in a listbox
i need show images for every item selected on a listbox necesito mostrar una imagen distinta por cada item en un listbox -
Loop through the listbox to read selected items
Hi, I am trying to loop through the listbox and read the selected items from the list, within a CLICK event on an aspx page. The following is... -
Get the selected item from a listbox
I'm having a hell of a time trying to determine which item is selected in a single-select listbox when the listbox autoposts. for some reason, the... -
Aaron Bertrand - MVP #2
Re: Remove multiple selected items listbox
[url]http://www.aspfaq.com/5002[/url]
"darren" <darrengaylor@hotmail.com> wrote in message
news:021c01c35c57$4908ced0$a601280a@phx.gbl...> How, using asp.net (vb.net), can I remove multiple
> selected items from a listbox. Everything I try does not
> seem to work. Thanks in advance.
Aaron Bertrand - MVP Guest
-
Ray at #3
Re: Remove multiple selected items listbox
[url]www.aspfaq.com/5002[/url]
Ray at work
"darren" <darrengaylor@hotmail.com> wrote in message
news:021c01c35c57$4908ced0$a601280a@phx.gbl...> How, using asp.net (vb.net), can I remove multiple
> selected items from a listbox. Everything I try does not
> seem to work. Thanks in advance.
Ray at Guest
-
Adrian Forbes #4
Remove multiple selected items listbox
I know I shouldn't answer but I'm an attention whore :)
While ListBox1.SelectedItems.Count > 0
ListBox1.Items.Remove(ListBox1.SelectedItem)
End While
>-----Original Message-----
>How, using asp.net (vb.net), can I remove multiple
>selected items from a listbox. Everything I try does not
>seem to work. Thanks in advance.
>.
>Adrian Forbes Guest
-



Reply With Quote


