как насчет checkedListBox ?
<asp:CheckBoxList id="checkboxlist1" runat="server">
<asp:ListItem>Item 1</asp:ListItem>
<asp:ListItem>Item 2</asp:ListItem>
<asp:ListItem>Item 3</asp:ListItem>
</asp:CheckBoxList>
Для доступа к элементам действий пользователя
void checkboxlist1_Clicked(Object sender, EventArgs e)
{
if (checkBoxList1.SelectedIndex == 1)
{
// DoSomething
}
}