Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3319568
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:50:24+00:00 2026-05-17T22:50:24+00:00

Asp.Net MVC 2 Futures doesn’t seem to handle JSON DateTime well (including double and

  • 0

Asp.Net MVC 2 Futures doesn’t seem to handle JSON DateTime well (including double and decimal values). As such, I setup all inputs as string, used Data Validation, and things worked pretty well.

However, I have this JSON2.js date from Firefox 3.6:

"/Date(1288296203190)/"

How do I turn this in to a valid date in C#?

var a = new DateTime(1288296203190);

That doesn’t give the right date (1/2/0001 11:47:09 AM) instead of Thu Oct 28 2010 16:03:23 GMT-0400 (Eastern Daylight Time). It’s probably because a 32 bit integer is only 10 digits. However, this fails too:

var a = Int64.Parse("1288296203190");
var b = new DateTime(a);

b’s value is 1/2/0001 11:47:09 AM.

What did it do? Wrap? Is this some kind of time travel “signed bit” issue?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T22:50:25+00:00Added an answer on May 17, 2026 at 10:50 pm

    The issue is the difference in epoch. Looks like the JSON2.js date you have uses the unix epoch (January 1, 1970) measured in ms. From the System.DateTime(long ticks) documenttion:

    expects A date and time expressed in the number of 100-nanosecond intervals that have elapsed since January 1, 0001 at 00:00:00.000 in the Gregorian calendar.

    Something like this should get you what you want.

    var unixEpoch = DateTime(1970, 1, 1);
    var ticksSinceEpoch = 1288296203190 * 10000;
    var time = new DateTime(unixEpoch.Ticks + ticksSinceEpoch);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

ASP.NET MVC has been discussed on this forum a few times. I'm about to
ASP.NET MVC routes have names when mapped: routes.MapRoute( Debug, // Route name -- how
ASP.NET MVC - what is this in VB.NET? Html.TextBox( name, null, new { @class
Using ASP.NET MVC there are situations (such as form submission) that may require a
In ASP.NET MVC it's possible to choice between having a typed view were you
With ASP.NET MVC (or using HttpHandlers) you can dynamically generate URLs, like the one
My ASP.NET MVC application will take a lot of bandwidth and storage space. How
In ASP.NET MVC is there an equivalent of the Html.ActionLink helper for Img tags?
Although ASP.NET MVC seems to have all the hype these days, WebForms are still
In ASP.NET MVC, we're required to use the suffix Controller for all controllers. This

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.