Reduce postbacks and improve performance by setting the AutoPostBack property for certain controls to false.
CheckBox and RadioButton controls
#IF DEFINED PBWEBFORM THEN cbx_1.AutoPostBack = false #END IF
When you set a control’s AutoPostBack property to false, all events related to that control are triggered only in the processing of the next postback caused by another control in the Web Forms application.