I have an object model that contains DateTime property. This object is being serialized into Json format by calling
return Json(model);
as a result, I am getting this string
"/Date(1474398517910)/"
instead of DateTime. That's because Json doesnt support DateTime format, instead it uses a string.
Question - how to make this string to look like real date, something like
"2016-10-22 12:20 PM"
Thanks?