My model has a DateTime property that accepts user input. Users will be needing to specify times with milliseconds (ex: 01/06/2014 01:49:36.585)
I tried using a DateTime picker, I tried using a textbox, but clientside validation fails for each with the error "The field x must be a date."
I was thinking I could turn off clientside validation and write a model binder that converts a string to a datetime, but there must be an easier way to do that. Any suggestions?