hi !
i have made some code for a checkboxlist the items if are selected or not,and then to put them in my database.but im having a problem.even if i select my items they always apears unselected .
Dim ckbox As ListItem
For Each ckbox In chbl.Items
If ckbox.Selected = True Then
objBLRegjistrimi.fnbooksubject(txtISBN.Text, chbl.SelectedValue)
End If
Next
'ckbox.selected' never becomes true,so never pass ' objBLRegjistrimi.fnbooksubject(txtISBN.Text, chbl.SelectedValue)'
i don't know why this happens.
thank you