I have two listboxes and have it all setup and working so that the user can move items from the first listbox to the second list box.
Once they have finished and they click submit I want to build a string of each item now in Listbox 2 but for some reason it is only picking up the first item?
This is the code I am using to try and get the items in Listbox 2:
Once they have finished and they click submit I want to build a string of each item now in Listbox 2 but for some reason it is only picking up the first item?
This is the code I am using to try and get the items in Listbox 2:
Dim inputValue As String = "" |
For Each item As RadListBoxItem In rlbOptionsReOrder.Items |
inputValue += item.Value & "," |
Next |