I was wondering if it\'s possible to set the checked propery of a checkbox, using a bool variable form the repeater\'s datasource?
I\'ve tried several ways but witho
The problem with the code is actually the fact that you are nesting double quotes
Checked="<%# DataBinder.Eval(Container.DataItem, "IsDefault")%>"
should be
Checked='<%# DataBinder.Eval(Container.DataItem, "IsDefault")%>'