<script type="text/javascript">
$(function () {
$("input:checkbox").click(function () {
$.ajax({
type: 'POST',
url: '/Project/Index/',
dataType: "html",
data: "Hello",
});
});
})
</script>
[HttpPost]
public ActionResult Index(string stat)
{
return View();
}
data: {stat: "Hello"}