我有四个这样的复选框,
<asp:CheckBoxList ID="CheckBoxList1" runat="server"
onselectedindexchanged="CheckBoxList1_SelectedIndexChanged" Width="190px">
<asp:ListItem>Programming Contests</asp:ListItem>
<asp:ListItem>Seminars/Workshops</asp:ListItem>
<asp:ListItem>Social Gatherings</asp:ListItem>
<asp:ListItem>Tech Support</asp:ListItem>
</asp:CheckBoxList>
我想将这些复选框的值存储为表中的 0 或 1。此外,可能存在用户选择多个复选框的情况,如何处理?我在数据库中使用了“位”数据类型。但是我遇到的困惑是如何将这些复选框的值存储为数据库中的 0 或 1?