I have a Action Method like this
public ActionResult TodayJson()
{
DateTime today = DateTime.Today;
return Json(today,JsonRequestBehavior.AllowGet);
}
that returns me the the following value
"\/Date(1369332000000)\/"
How can I parse it in actual date time by the jquery or java script. Format should be like this dd-mm-yyyy