I have a template field within a GridView to display a checkbox in edit view and some custom text in normal view.The results of the query to populate the grid are coming back in a DataSet.In the edit view I can't get the checkbox to accept the column that is retuning from the DataSet (which is in T/F format) as it says its not the correct type. Even if I return "true" or 1 in the column it still dosn't work.I take it I need to convert but can't get the syntax correct in this context \[code\]<EditItemTemplate> <asp:CheckBox ID="cbPostToFarm" runat="server" Checked='<% Bind("BOOL_COL")' /> </EditItemTemplate>\[/code\]