Question:You noticed that clicking a CheckBox does not cause an automatic PostBack. You need
the CheckBox to PostBack so you can update the Web page based on server-side code.
How do you make the CheckBox cause an automatic PostBack?
A Set the AutoPostBack property to true.
B Add JavaScript code to call the ForcePostBack method.
C Set the PostBackAll property of the Web page to true.
D Add server-side code to listen for the click event from the client.
+ AnswerA
+ Report