At the moment i'm attempting to try and save datetimes that are formatted in the american way (mm/dd/yy), now I have the jquery datepicker and I have updated that to format its date to be mm/dd/yy so they display correctly, but when I attempt to post, the ModelState throws an error stating that the date is not valid, for example 12/31/2014 is invalid, it is invalid in the en-gb way but not for US. How can I forward my modelstate to see this date (12/31/2014) to be valid?
I could save the datetime by coverting my mm/dd/yy to dd/mm/yy and when I want to pull out the date i can just convert again to mm/dd/yy but that seems quite wrong in my mind.