Níže kód je napsán tak, aby načíst všechny vybrané hodnoty kontrolní box
Ale jeho retieve pouze první vybraná hodnota
Prosím pomozte
Dim CheckedValues As String
For Each item as ListItem In txt_panview0_ddinput1.Items
If item.Selected Then
CheckedValues = CheckedValues & item.Value
End If
Next
If Not String.IsNullOrEmpty(checkedValues) Then
checkedValues = checkedValues.Substring(1)
End If
tempCollector = tempCollector + <br> + Area Name + : + checkedValues













