I've got my display format setup as so
<DisplayName("birthdate")> _
<DisplayFormat(ApplyFormatInEditMode:=True, DataFormatString:="{0:MM/dd/yyyy}")> _
Public Property BirthDate As DateTime
Then in the View I have the following
<%: Html.TextBoxFor(Function(model) model.BirthDate, Model.BirthDate)%>
<%: Html.ValidationMessageFor(Function(model) model.BirthDate) %>
Meaning that the output "should" be
6/24/1982
But unfortunately, the output is
6/24/1982 12:00:00 AM
Does anyone know what I might be missing here?