Poniżej kod jest napisany w taki sposób, aby odzyskać wszystkie zaznaczone pole wyboru wartości
Ale tylko jego retieve pierwsza wybrana wartość
Proszę pomóż
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













