私はこれを視野に入れています:
$('#datepicker').datepicker({
onSelect: function (date, inst){
$(this).parent('form').submit();
}
});
<form method="post" name="datepickerForm">
<div id="datepicker"></div>
</form>
Date Posted: @ViewBag.PostedDate
コントローラーには、次のものがあります。
public ActionResult Index(int? datepickerForm) {
if(datepickerForm.HasValue) // this is always null
ViewBag.PostedDate = datepickerForm.Value;
}