I am sending DateTime
values from form to a controller. The field in the model is a DateTime?
. When sending the value using MM/dd/yyyy
the binding works correct and the value is available in the controller.
When changing the dateformat to dd/MM/yyyy
the model binding is not working and the value is null
when received inside the controller.
Any tips would be really helpfull here.