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 6562731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T13:44:38+00:00 2026-05-25T13:44:38+00:00

I use a legacy DMS application, who stores dates using GMT 0 (Greenwich) as

  • 0

I use a legacy DMS application, who stores dates using GMT 0 (Greenwich) as default time zone and applies 1 hour spread to it. I have to display with GridView these records and I need to apply a kind of transformation according to the relative location where my system runs (as example London, Bahamas).

Looking on how the legacy system works with dates, I designed the following algorithm to display the dates properly (my code is based on asp.net / C#):

//Example for Bahamas, GMT: -5 Hours as offset, I should add 4 hours to the DB date
//Example for London,  GMT:  0 Hour  as offset, I should add 1 hour  to the DB date
DateTime dateToDisplay;
int spreadHours  = 0;

TimeZone cur = TimeZone.CurrentTimeZone;
DaylightTime daylight = cur.GetDaylightChanges(dateFromDb.Year);
DateTime start = daylight.Start;
DateTime end = daylight.End;

if (dateFromDb.CompareTo(start) <= 0 || dateFromDb.CompareTo(end) >= 0)
{
   spreadHours  = -1 - (cur.GetUtcOffset(dateFromDb).Hours);                
}
else
{
   spreadHours  = - (cur.GetUtcOffset(dateFromDb).Hours);                
}

dateToDisplay = dateFromDb.AddHours(spreadHours);

However I am not sure if with this process I can cover all the cases or whether there could be a better solution to achieve the same result.

Can anyone confirm my idea or suggest a better path?

  • 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-25T13:44:39+00:00Added an answer on May 25, 2026 at 1:44 pm

    In general from .NET 3.5 you could/should use the TimeZoneInfo class,

    in fact to convert from an UtcDateTime to a local time all you need to do is this:

    // here static text but you can initialize the TimeZoneInfo with any Id, check MSDN for this:
    // http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx
    
    string nzTimeZoneKey = "New Zealand Standard Time";
    
    TimeZoneInfo nzTimeZone = TimeZoneInfo.FindSystemTimeZoneById(nzTimeZoneKey);
    DateTime nzDateTime = TimeZoneInfo.ConvertTimeFromUtc(utcDateTime, nzTimeZone);
    

    you can check this other question and answers here in SO:

    Convert UTC/GMT time to local time

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I use a legacy library that writes logs using log4j. My default log4j.properties file
I want to use WPF windows in a legacy win32 application. I'd like to
I am developing an application that needs to use regini (because of legacy reasons)
I am dealing with a legacy application where they use [a] tags for many
I need to use activeX to create a plugin for a legacy application. I'm
There is a legacy application in my company which is still in use. I
I have to use a legacy C routine in the application I am developing.
I'm writing an application which makes use of some legacy code. The newer code
I use the Entity Framework 4 to migrate a legacy application to C #.
I have a managed DLL that I want to use in a legacy application

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.