After serializing an object with DateTime field with JavaScriptSerializer, I see that the DateTime field looks like this:
DateTime
JavaScriptSerializer
There is an answer that may help you:
Parsing Date-and-Times from JavaScript to C#
If you want to parse datetime string to datetime value with javascript you must use "new Date" like this:
var data = new Date("1355496152000");