I have a MVC3 view with the following code
$(document).ready(function () {
$('#multiInlinePicker').datepick({
multiSelect: 30, monthsToShow: 3, monthsToStep: 3,
prevText: 'Prev months', nextText: 'Next months'
});
}
<span id="multiInlinePicker"></span>
I would like to pass the selected dates on the datepick control to the controller. What is the best way to do this?
Thanks in advance Regards Tom