Question:You notice that clicking a CheckBox does not cause an automatic postback. You need the CheckBox to automatically post back so you can update the webpage 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 webpage to true.
D Add server-side code to listen for the click event from the client.
+ AnswerA
+ Report