Remove the checked property from both the checkbox or cast both to boolean value.
If remove then remove below code.
Checked='<%# Bind("Attendance_Con") %>'
Checked='<%# Bind("Leaving_Con") %>'
If casting then cast like below.
Checked='<%# Convert.ToBoolean(Eval("Attendance_Con")) %>'
Checked='<%# Convert.ToBoolean(Eval("Leaving_Con")) %>'
But make sure if you are casting then you have to pass 1 or 0 or true or false.