I have the following code in my View:
<td class="choice">
@Html.TextBoxFor(modelItem => item.ManualDate, new { @type = "date", @class = "form-control datepicker" })
</td>
In my database ManualDate field is a column with nulls mostly. So in my web app in this field nulls are shown (no value).
As you can see it's a 'date' input field. User can choose date in the datepicker in this field. I want to save this date in a database. How can I retrieve value (date picked by user) from this field and pass it to controller?