check box lst problem - help ? - resolved
hi
i have a check box list in page and a button when i check some items and submit by button i am not able to read the selected items or checked items status at server. is there a way to it or i am doing it wrong this is the code
sub buton1_click(sender as object, e as eventargs)
Dim i As Integer
For i=0 To checkboxlist1.Items.Count - 1
If checkboxlist1.Items(i).Selected Then
response.write( checkboxlist1.Items(i).Text + "<br>")
End If
Next
end sub
thanks in advance --