Advice for Storing and Displaying Dates and Times Across Different Time Zones

Posted on Internet.com See other posts from Internet.com
Published on Wed, 07 Apr 2010 04:00:00 +0100 Indexed on 2010/04/07 15:53 UTC
Read the original article Hit count: 371

Filed under:
This ASP.NET tutorial discusses different techniques for storing dates and times in a web application and displaying them accurately across different time zones.

© Internet.com or respective owner

Advice for Storing and Displaying Dates and Times Across Different Time Zones

Posted on Internet.com See other posts from Internet.com
Published on Tue, 30 Mar 2010 04:00:00 +0100 Indexed on 2010/04/07 4:03 UTC
Read the original article Hit count: 371

Filed under:
A common question I receive from clients, colleagues, and 4Guys readers is for recommendations on how best to store and display dates and times in a data-driven web application. One of the challenges in storing and displaying dates in a web application is that it is quite likely that the visitors arriving at your site are not in the same time zone as your web server; moreover, it's very likely that your site attracts visitors from many different time zones from around the world.Consider an online messageboard site, like <a href="http://www.aspmessageboard.com/">ASPMessageboard.com</a>, where each of 1,000,000+ posts includes the date and time it was made. Imagine a user from New York leaves a post on April 7th at 4:30 PM and that the web server hosting the site

© Internet.com or respective owner

Advice for Storing and Displaying Dates and Times Across Different Time Zones

Posted on 4 Guys From Rolla See other posts from 4 Guys From Rolla
Published on Wed, 31 Mar 2010 00:00:00 GMT Indexed on 2010/04/07 3:03 UTC
Read the original article Hit count: 371

Filed under:

A common question I receive from clients, colleagues, and 4Guys readers is for recommendations on how best to store and display dates and times in a data-driven web application. One of the challenges in storing and displaying dates in a web application is that it is quite likely that the visitors arriving at your site are not in the same time zone as your web server; moreover, it's very likely that your site attracts visitors from many different time zones from around the world.

Consider an online messageboard site, like ASPMessageboard.com, where each of 1,000,000+ posts includes the date and time it was made. Imagine a user from New York leaves a post on April 7th at 4:30 PM and that the web server hosting the site is located in Dallas, Texas, which is one hour earlier than New York. When storing that post to the database do you record the post's date and time relative to the visitor (4:30 PM), the relative to the web server (3:30 PM), or some other value? And when displaying this post how do you show that date and time to a reader in San Francisco, which is three hours earlier than New York? Do you show the time relative to the person who made the post (4:30 PM), relative to the web server (3:30 PM), or relative to the user (1:30 PM)? And if you decide to store or display the date based on the poster's or visitor's time zone then how do you know their time zone and its offset? How do you account for daylight savings, and so on?

This article provides guidance on how to store and display dates and times for visitors across different time zones and includes a demo that gives a working example of some of these techniques. Read on to learn more!
Read More >

© 4 Guys From Rolla or respective owner