I just upgraded an ASP.Net MVC application to MVC-4. The field editor for inputs based on DateTime values now include\'s the HTML-5 type="date" attrib
type="date"
If you are dealing with a table and one of the dates happens to be null, you can code it like this:
@{ if (Model.SomeCollection[i].date_due == null) { } else { } }