私は CheckBoxList を作成しており、動的に入力しています。コードをステップ実行したところ、次のメソッド内でヒットしないようです。選択された値属性の値は常に false だと思います。
<form id="form1" action="web_page.aspx">
<asp:CheckBoxList ID="CheckBoxList1" runat="server" AutoPostBack="True"
onselectedindexchanged="CheckBoxList1_SelectedIndexChanged" >
</asp:CheckBoxList>
<br />
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="submit"/>
</form>
<div id="p" runat="server"></div>
protected void CheckBoxList1_SelectedIndexChanged(object sender, EventArgs e)
{
this.p.InnerHtml = "hello";
}