Currently, I have checkbox column inside of a radgrid control, and I bind the "Bool", which does not exist to the database. I am wondering does it auto-bind to the batabase and if so, how can I access to it?
<
EditItemTemplate>
<asp:CheckBox ID="chk1" runat="server" Checked='<%# Bind("Bool") %>'>
</asp:CheckBox>
</EditItemTemplate>
<ItemTemplate>
<asp:CheckBox ID="chk2" runat="server"></asp:CheckBox>
</ItemTemplate>