In my ASP.net MVC app I have a view that looks like this:
... Due Date <%=Html.TextBox(\"due\")%> ...
I am usi
I find the best way to do this is to reset the ModelValue
ModelState.SetModelValue("due", new ValueProviderResult( due.ToShortDateString(), due.ToShortDateString(), null));