I am using a JQuery plugin to render a calendar (http://arshaw.com/fullcalendar/). Problem is that the dates are one hour ahead. I have tried looking into the files to find out where this happens.

Can it be something with day light savings? I am pretty clueless. The dates from the database is correct, but once they are converted to a UNIX timestamp they are missing one hour.

I use this to convert my date to timestamp.

private double ConvertToTimestamp(DateTime value)
{
    //create Timespan by subtracting the value provided from
    //the Unix Epoch
    var date = new DateTime(1970, 1, 1, 0, 0, 0, 0);

    TimeSpan span = (value - date.ToLocalTime());

    //return the total seconds (which is a UNIX timestamp)
    return (double)span.TotalSeconds;
}

But i believe its not where the problems lies.

Thank you.

link|improve this question

Well fix like this: return (double)(span.TotalSeconds + 3600); that way you will add your lost hour... Or, you can add one hour in new DateTime(1970, 1, 1, 1, 0, 0, 0); – Cipi Aug 30 '10 at 9:45
Good question, i've not checked this behaviour in my app. Will be doing it quick smart tomorrow morning.... – Doozer1979 Aug 30 '10 at 22:42
feedback

3 Answers

up vote 1 down vote accepted

Is it possible that you live in a part of the world that observes Daylight Savings Time? That would explain why your dates are an hour ahead. Try skipping ahead to December and adding a few dates. Are they still an hour ahead?

link|improve this answer
Exactly. How can I code this behavior? :-) – meep Aug 30 '10 at 11:13
@meep: I think the best thing to do would be to modify the start and end times of your events in your server side code. Unfortunately, I'm not a C# expert so I don't know how to do that. :/ – theycallmemorty Aug 30 '10 at 13:33
feedback

I have had a similar problem and solved it with:

function _changeToLocal (localDate) {
      return new Date( localDate.getFullYear(), localDate.getMonth(), localDate.getDate(), 
         localDate.getHours(), localDate.getMinutes() + localDate.getTimezoneOffset());
}

assuming it's a TimeZone related problem. Günter

link|improve this answer
feedback

I just experienced a similar issue when moving from my dev box to Amazon EC2 for staging... The Regional Settings on my Amazon instance were set to US West Coast, not my timezone (Sydney, Australia).

Changing this, and then updating the locales of the built in accounts (Network Instance etc) resolved my problems with the dates being rendered incorrectly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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