When sending a string date in the format of "dd/mm/yyyy" from JavaScript (with JSON) to the server (C#), I am encountering an issue where C# DateTime returns null. However, if I send the date in the format of "mm/dd/yyyy", it works fine. I am using MVC4.
Is there a way to change the format so that DateTime can accept "23/10/2014" without returning null?