<td colspan="2"><% Html.jQuery().DatePicker()
.Name("birth_date")
.DateFormat("dd-mm-yy")
.MaximumValue(DateTime.Now.AddYears(-15))
.MinimumValue(DateTime.Now.AddYears(-100))
.NavigationAsDateFormat(true)
.Value(Model.birth_date)
.Render(); %></td>
by default it shows 01-01-001, I want to set the default date.
Set the
Model.birth_datevalue, its default value may be isDateTime.MinDate. So, that’s why it shows01-01-001.