I finally figured out what to do.
I will switch my project to the ISO 8601 DateTime format. Serialization is done using JSON.net, simply decorating the datetime property on the object with the JsonConverter attribute.
public class ComplexObject
{
[JsonProperty]
public string ModifiedBy { get; set; }
[JsonProperty]
[JsonConverter(typeof(IsoDateTimeConverter))]
public DateTime Modified { get; set; }
...
}
ajax , :
return Json(JsonConvert.SerializeObject(complexObjectInstance));
:
jsObject = JSON.parse(result)
, , , JSON ASP.NET MVC Newtonsoft JSON.net ISO 8601, , : JSON-, ASP MVC3.