Click here to Skip to main content
Click here to Skip to main content

Quick Tip – Converting JSON Serialized .NET DateTime to JavaScript Date

By , 1 Dec 2011
 

Quick Tip – Converting JSON Serialized .NET DateTime to JavaScript Date

When you are using the controller JSON method in ASP.NET MVC or scriptable WCF services, you sometimes have to serialize a .NET DateTime property. DataContractJsonSerializer will serialize it into the the following format:

/Date(1235398665390)/ 

This format indicates to the client side parsers that the data fragment that was sent is a date representation. But how can you convert it to a JavaScript Date object?

There are a few methods:

  • “Brutal Force”: Extract the number using a Regular Expression or substring functions and pass it to the Date object which gets the time in milliseconds in its constructor:
  • var date = new Date(1235398665390);
  • Server-side approach: Send to the client side not a .NET DateTime but the total milliseconds and then use the same constructor from the previous bullet. You should pay attention that JavaScript’s base date is 1/1/1970. The following code can help:
  • var baseDate = new DateTime(1970, 1, 1); 
    var currentDate = DateTime.Now.ToUniversalTime(); 
    TimeSpan ts = new TimeSpan(dcurrentDate.Ticks - baseDate.Ticks); 
    return ts.TotalMilliseconds;
  • The eval way: On the client side, use the eval function to evaluate and create the Date object:
  • var date = eval("new " + dateFromTheServer.slice(1, -1));

    Where dateFromTheServer is in the format which was presented at the top of the post.

There are probably other ways which can help you. What is your way?

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Gil Fink
Architect Sela Group
Israel Israel
Member
Gil Fink is an expert in ASP.NET and Microsoft data platform and serves as a Senior Architect at SELA Group. He is a Microsoft data platform MVP and a certified MCPD Enterprise Application Developer. Gil has worked in the past in variety of positions and projects as a leading developer, team leader, consultant and more. His interests include Entity Framework, Enterprise Library, WCF, LINQ, ADO.NET and many other new technologies from Microsoft.
 

My technical blog: http://www.gilfink.net

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberRupeshKumar29 Nov '12 - 3:36 
great solution thanks for posting.
Question"Brutal Force" is bettermemberSergejsvit6 Dec '11 - 21:29 
eval - is very slow, thus "Brutal Force" approach is better.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 1 Dec 2011
Article Copyright 2011 by Gil Fink
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid