selected items in asp:ListBox
Hi,
If I have an asp:ListBox control in my page that may have been populated but is now in a hidden panel, how can I show, in a summary section, all of the potentially selected items in an asp:Label control?
I.E., I want to do something like
Dim Item as ListItem
lblRptGrpSelected =
For Each item In lstRptGrpSel.Items
Response.Write(item.Text)
Next
Thanks,
John
|