I have a GridView with a column of checkboxes (the rest of the GridView is being populated from a database). I\'m using AJAX to perform different functions, and I\'m wonderi
Please try to check the value with the DB:
Checked='<%# Convert.ToBoolean(Eval("Processed"))
%>'
Try turning AutoPostBack on for the checkbox control.
<asp:CheckBox ID="CheckBoxProcess" runat="server" Enabled="true" OnCheckedChanged = "CheckBoxProcess_OnCheckedChanged" AutoPostBack="true" />
This maybe the reason your method isn't being called.