Click here to Skip to main content
15,886,724 members
Articles / Web Development / IIS
Article

Easily Work With Differing Time Zones In An ASP.NET 3.5 Application

Rate me:
Please Sign up or sign in to vote.
3.00/5 (9 votes)
18 Jun 2008LGPL32 min read 39.3K   648   29   5
Class library to assist in using different time zones in the same ASP.NET 3.5 application

Introduction

When working with ASP.NET applications, time zones are often a problem when dealing with DateTime structures. There are two different common scenarios that a developer is likely to encounter. The first is that you are placing the application on a hosted server that is in a different time zone than the business you are trying to operate. The second is that you have users from different time zones and would like to display the date and time to the user in their local time zone rather than the server's time zone.

Hosted Time Zone addresses this problem by providing two settings. ApplicationTimeZone sets the time zone to be used by the entire application. ThreadTimeZone sets the time zone to be used by the currently running thread, which defaults to the ApplicationTimeZone if no time zone has been specified on the thread. If you are using ThreadTimeZone then you need to be sure to set the value for each request made to the server. You will usually do this in your global.asax file, such as in the Application_BeginRequest handler.

Using the code

To actually perform the conversions you can call the ToAppTime, FromAppTime, ToThreadTime, or FromThreadTime static methods on the ApplicationTimeZone class. Additionally, extension methods have been declared for the DateTime and DateTimeOffset classes that perform the same functions more cleanly. In order for the extension methods to work you must import the HostedTimeZone namespace.

You should note that there are not any overloads for FromAppTime or FromThreadTime for the DateTimeOffset class. This is because the ToLocalTime method of DateTimeOffset performs the same function, so they would be redundant.

Points of Interest

This library requires the TimeZoneInfo class, which is not available until the .NET Framework 3.5. Therefore, it is not compatible with ASP.NET 2.0 or earlier.

History

1.0.0.0 6/18/2008 Initial Release

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) Pathfinder Software
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
ramesh_nrk9-May-11 23:24
ramesh_nrk9-May-11 23:24 
Question2.0 version? Pin
Ronald Bastien27-Oct-08 14:36
Ronald Bastien27-Oct-08 14:36 
AnswerRe: 2.0 version? Pin
BrantBurnett28-Oct-08 17:43
BrantBurnett28-Oct-08 17:43 
AnswerRe: 2.0 version? Pin
BrantBurnett4-Nov-08 4:06
BrantBurnett4-Nov-08 4:06 
GeneralInteresting Pin
merlin98120-Jun-08 8:24
professionalmerlin98120-Jun-08 8:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.