I been reading that if you want to convert from javascript dates to C# dates you should use getTime() and then add that result to a C# datetime.

say I have this javascript time.

Date {Tue Jul 12 2011 16:00:00 GMT-0700 (Pacific Daylight Time)}

It renders to 1310522400000 milliseconds

var a = new DateTime(1970, 01, 01).AddMilliseconds(1310522400000);

// result

7/13/2011 2:00:00 AM

So this is wrong. I am not sure what I need more to do.

link|improve this question

1  
They are same... 7/13/2011 2:00:00 AM - 7 (GMT delta) -1 Daylight Savings = Tue Jul 12 2011 16:00:00 GMT-0700 (Pacific Daylight Time) – Cybernate Jul 15 '11 at 4:34
1  
@Cybernate, I think you're out. There's a 10 hour difference between 16:00 and 2:00. – Hand-E-Food Jul 15 '11 at 4:43
@Hand: U r right.. I guess time to hit bed.. – Cybernate Jul 15 '11 at 4:46
Possible duplicate: stackoverflow.com/questions/1877788/… – MD. SHAKIL AHMED. Jul 18 '11 at 4:32
feedback

5 Answers

up vote 0 down vote accepted

First create a string in your required format using the following functions in javascript,

    Var Date=new Date();

    var dd=Date.getDay();//yeilds day

    var MM=Date.getMonth();//yeilds month

    var yyyy=Date.getYear(); //yeilds year

    var HH=Date.getHours();//yeilds hours 

    var mm=Date.getMinutes();//yields minutes

    var ss=Date.getSeconds();//yields seconds

    After this construct a string with the above results as below,

    var Time=dd+"/"+MM+"/"+yyyy+" "+HH+':'+mm+':'+ss; 

Pass this string to codebehind function and accept it as a string parameter.Use the DateTime.ParseExact() in codebehind to convert this string to DateTime as follows,

          DateTime.ParseExact(YourString, "dd/MM/yyyy HH:mm:ss", CultureInfo.InvariantCulture);

Hope this helps...

link|improve this answer
I am not sure if I should DateTime.ParseExact it seems very picky. I think sometimes the javascript will send like 2 digits for the hours and sometimes one. If it sends one then it won't parse since the pattern you have has "HH". So should I do something like DateTime.Parse(Start);? – chobo2 Jul 15 '11 at 16:15
You should append a "0" in front if javascript returns only a single digit. For that you should use "HH.length()","mm.length()",etc.... and construct the string (var Time)accordingly. – Harun Jul 16 '11 at 1:11
feedback

DateTime.Parse is a much better bet. JS dates and C# dates do not start from the same root.

Sample:

DateTime dt = DateTime.ParseExact("Tue Jul 12 2011 16:00:00 GMT-0700",
                                  "ddd MMM d yyyy HH:mm:ss GMTzzzzz",
                                  CultureInfo.InvariantCulture);
link|improve this answer
The problem with this is I don't know how to get that hardcoded string you have from ajax to my MVC action method. If I try to pass in the date object it does not send it. Even if I use like "string" as the parameter in my action method. – chobo2 Jul 15 '11 at 16:09
You mean you're not able to serialize your JS Date as string to a known format (like Date.toUTCString() and send it to your MVC action? Can you post your ajax code? – Mrchief Jul 15 '11 at 16:15
feedback

I think you can use the TimeZoneInfo....to convert the datetime....

    static void Main(string[] args)
    {
        long time = 1310522400000;
        DateTime dt_1970 = new DateTime(1970, 1, 1);
        long tricks_1970 = dt_1970.Ticks;
        long time_tricks = tricks_1970 + time * 10000;
        DateTime dt = new DateTime(time_tricks);

        Console.WriteLine(dt.ToShortDateString()); // result : 7/13
        dt = TimeZoneInfo.ConvertTimeToUtc(dt);

        Console.WriteLine(dt.ToShortDateString());  // result : 7/12
        Console.Read();
    }
link|improve this answer
feedback

If you are in the U.S. Pacific time zone, then the epoch for you is 4 p.m. on December 31, 1969. You added the milliseconds since the epoch to

new DateTime(1970, 01, 01)

which, since it did not have a timezone, was interpreted as being in your timezone.

There is nothing really wrong with thinking of instants in time as milliseconds since the epoch but understand the epoch is only 1970-01-01T00:00:00Z.

You can't think of instants in times, when represented as dates, without timezones.

link|improve this answer
feedback

Interesting but:

(new DateTime(2011, 7, 12, 23, 0, 0,DateTimeKind.Utc) - new DateTime(1970, 1,1, 0, 0, 0, DateTimeKind.Utc)).TotalMilliseconds.Dump();

var diff = (1310511600000 - 1310522400000);

diff.Dump();

new DateTime(1970, 1, 1, 0, 0, 0).AddMilliseconds(diff).Dump();

Here is the result:
1310511600000 - number of ms between 2011/7/12 xxx and 1970/1/1 xxx
-10800000 - ms difference between your number and calculated number
12/31/1969 9:00:00 PM - JS time off

Looks like your JS code 3 hours off from C# time. Are your sure your JS code return right number of ms?

link|improve this answer
Not sure. I would hope that the built in function getTime() would work. – chobo2 Jul 15 '11 at 15:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.