My WCF webservice is returning C# DateTime objects as JSON like this,
\"/Date(1293793200000+1300)/\"
I have found this,
Converting .NET DateTime to JSON<
You can convert the DateTime object in .NET to a string and just serialize the string. That's what I did. See Proper way to format date from database using javascript/jquery