Hi Richard,
Checklistbox doesn't support bindind to its checkbox value. I think you may
use a repeater control instead. For exmaple:
<asp:Repeater id="Repeater1" runat="server" DataSource="<%# DataSet21 %>"
DataMember="Table6">
<itemtemplate>
<asp:CheckBox Runat =server Checked =<%#
DataBinder.Eval(Container.DataItem, "check") %> ></asp:CheckBox>
<%# DataBinder.Eval(Container.DataItem, "name") %><br>
</itemtemplate>
</asp:Repeater>
Luke
Microsoft Online Support
Get Secure!
www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)