I have a CheckBox on an ASP.NET Content Form like so:
The super easy answer is to set the ViewState on for that one control.
ViewState
Just add the EnableViewState="true" to the AutoPostBack="true" property in the checkbox tag.
EnableViewState="true"
AutoPostBack="true"