I have a repeater, in each ItemTemplate of the repeater is an asp:checkbox with an OnCheckedChanged event handler set. The checkboxes have the AutoPostBack property set to t
Try re-subscribing to the CheckChanged event in your OnItemDataBound event ,
chkLinked.CheckedChanged += new EventHandler(chkLinked_CheckedChanged);