I have a DataGrid on my page with bound labels... However, I am trying to bound a SqlServer bit column to a CheckBox on the form instead of the traditional Label/TextBox controls.... I am using a TemplateColumn instead of a BoundColumn tag but still it doesnt work...Here is what I have

<asp:TemplateColumn HeaderText="asdc">
<ItemTemplate>
<asp:CheckBox Checked='<%# Container.DataItem("ddddd") %>' runat="server" />
</ItemTemplate>
<EditItemTemplate>
<asp:CheckBox id="vvv" Checked='<%# Container.DataItem("ddddd") %>' runat="server" />
</EditItemTemplate>
</TemplateColumn>

Does anyone know what property of the checkbox I can use to bound to a Bit field if not the Checked property...