Hi Everyone,

Below is a line I have in my ItemTemplate of a FormView. The value in the table is null rather than true/false. Is there any way I can set the default for this to be false if it is null? Or can I do this in my stored procedure in the Select statement to return false if null?

Code:
<asp:CheckBox ID="chkCharges" runat="server" Checked='<&#37;# Bind("MCOverrideCharges") %>' 
       Text="Yes" Enabled = "False" />
Thanks!