<asp:CheckBoxList ID="ckbLstPartner" runat="server" RepeatDirection="Horizontal" CssClass="cssRdlstMoheSacm">
<asp:ListItem Text="Yes" Value="1"></asp:ListItem>
<asp:ListItem Text="No" Value="0"></asp:ListItem>
</asp:CheckBoxList>
In the above CheckBoxList, I'm trying to get the (selected value) by JQuery to hold it and store it in
in the DB. Please check the below JQuery:
$('#<%=ckbLstPartner.ClientID %>').foreach(function () {
if ($(this).is(':checked')) {
***// ??***
}
else {
}
});