I wrote a web site.
- The client sends an ajax request to the server
- The server sends back a
DateTime
- The client should print it to the UI
using chrome console I see the client gets:
SentTime: "/Date(1318319100000)/"
How can I manipulate the data in client side to be printed nicely?
Is it preferable to do this on server side (meaning sending only strings) ?