Using a foreach loop (For Each in VB.NET), you can iterate over the collection of ListItem elements,testing the Selected property one by one. If the item was selected in the list, its Selected property is true (True in VB) and its Value is appended to the text of the Label. Notice the use of += (&= in VB.NET) in the last code example to assign the Value of the list item together with the text to the Label control’s Text property. The += and &= syntax is shorthand for this: