function SetValue() {
var values = '';
$('#<%=CheckBoxList1.ClientID %> input[type=checkbox]:checked').each(function () {
if (values.length == 0) {
values = this.value;
}
else {
values += "," + this.value ;
}
});
}
<asp:CheckBoxList ID="CheckBoxList1" runat="server" onclick="SetValue();" RepeatDirection="Horizontal">
<asp:ListItem Value="0" Text="Employee"></asp:ListItem>
<asp:ListItem Value="1" Text="Group Employee"></asp:ListItem>
<asp:ListItem Value="2" Text="Reporting Manager"></asp:ListItem>
<asp:ListItem Value="3" Text="Department Head"></asp:ListItem>
</asp:CheckBoxList>
var values = '';
$('#<%=CheckBoxList1.ClientID %> input[type=checkbox]:checked').each(function () {
if (values.length == 0) {
values = this.value;
}
else {
values += "," + this.value ;
}
});
}
<asp:CheckBoxList ID="CheckBoxList1" runat="server" onclick="SetValue();" RepeatDirection="Horizontal">
<asp:ListItem Value="0" Text="Employee"></asp:ListItem>
<asp:ListItem Value="1" Text="Group Employee"></asp:ListItem>
<asp:ListItem Value="2" Text="Reporting Manager"></asp:ListItem>
<asp:ListItem Value="3" Text="Department Head"></asp:ListItem>
</asp:CheckBoxList>
Sign up here with your email
ConversionConversion EmoticonEmoticon