checkboxlist control
ASP.NET
3
Posts
2
Posters
0
Views
1
Watching
-
hiii I have a checkboxlist control where we can select multiple items.I want to submit the items of this control to database when they are checked.Can you giv me idea that how cud i perform this task. thnk's regard's pm
-
hiii I have a checkboxlist control where we can select multiple items.I want to submit the items of this control to database when they are checked.Can you giv me idea that how cud i perform this task. thnk's regard's pm
for (int i=0; i<checkboxlist1.Items.Count; i++) { if (checkboxlist1.Items[i].Selected) { checkboxlist1.Items[i].Text } } u will get each item selected