Automatic postback in Web Forms was done using some JavaScript. It's not out of the box in MVC, but simple enough to do it yourself.
Assuming you have jQuery:
$(document).ready(function() {
$('#someCheckBox').change(function() {
$('#yourFormId').submit();
});
});
"" , -; " " someCheckBox " , " yourFormId ". , , .
- , AJAX -, , . :
$(document).ready(function() {
$('#someCheckBox').change(function() {
$.ajax();
});
});