So I've used a third party JSON serializer named Json-Net. It converts my DateTime objects into something like new Date(2031231023912) inside a JSON string.
I, however, can't get any Javascript JSON parsers to parse it, since it is considered invalid JSON. Any ideas around it?
I guess I could manually send back the ticks from the webservice I am hitting but that would be a pain. Hopefully there is a workaround.