I am using a .NET 3.5 ListView control and would like to display a TINYINT field value as a checkbox (0 = False, 1 = True).
How to do this?
I was trying:
<asp:CheckBox ID="freight_foundCheckbox" runat="server"
Checked='<%# Eval("found") %>' />
But this results in a Cast error.