msg+= concatenates the contents of msg with whatever is on the other side of the equals sign.
I can't find a msg = msg & in the example, what line is it on?
lblCities.Text = msg; assigns the contents of msg (the cities that were chosen and then concatented with line breaks in between) to the the asp:Label in the body of the HTML with the id lblCities. At the start of the program lblcities has no text value and so is blank, it is only after submit has been clicked that you give it a value.
hope this helps.
Tom
|