AutoPostBack

Reduce postbacks and improve performance by setting the AutoPostBack property for certain controls to false.

Applies to

CheckBox and RadioButton controls

Usage

In scripts, surround the AutoPostBack property in a conditional compilation code block for Web Forms applications:
   #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.