I have an MVC action that returns JsonResult which I pass in a class where one field is a DateTime field. When I read that field in from javascript it's display like:
/Date(1391666400000)/
public JsonResult GetDate()
{
return Json(DateTime.Now(), JsonRequestBehavior.AllowGet);
}
How can I convert this to just say "2/6/2014" like it was when coming from .NET?