I know that my question is similar to others but I didn't found any solution to my problem.
I have a C# DateTime property
public DateTime MyDate { get;set;}
When I use an ajax to get some information, I wrote in javascript something like:
$.each(object, function(k,v){
alert(object.MyDate);
});
It returns something like:
/Date(1362478277517)/
It is possible to convert that datetime to javascript date ?
Thank you.