<input type="checkbox" name="chkbox"
onclick="Utility('<%# Eval("id") %>');"
checked='<%# Eval("Contacted") %> ' />
onclick is used to run AJAX, which updates the record in the DB depending on wether the checkbox was selected or unselected.
My Q being....I want to grab 'T' or 'F' which is stored in 'contacted' in code behind I was trying to do this through the normal binding Eval("Contacted")...(as in code behind 'Contacted' will have the value.
Any ideas? thanks