Using TimeZones on website using ASP.Net 3.5 / SQL Server 2005 - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T03:01:07Zhttp://stackoverflow.com/feeds/question/644342http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/644342/using-timezones-on-website-using-asp-net-3-5-sql-server-20050Using TimeZones on website using ASP.Net 3.5 / SQL Server 2005Kjensen2009-03-13T19:53:18Z2009-03-13T20:04:08Z
<p>I am trying to determine, how I should implement local time in a web-app. All users are logged in, there are no anonymous users. They will need to see all time-values in their local time.</p>
<p>Is this how it should be done?</p>
<ol>
<li>All DateTime values are saved as UTC-time in database</li>
<li>Each user has a UTC-Offset value stored in his profile</li>
<li>When displaying a datetime-value, I take the value from the database, and apply the users offset.</li>
</ol>
<p>Is this the way to go? Or am I missing something?</p>
http://stackoverflow.com/questions/644342/using-timezones-on-website-using-asp-net-3-5-sql-server-2005/644366#6443665Answer by Jon Skeet for Using TimeZones on website using ASP.Net 3.5 / SQL Server 2005Jon Skeet2009-03-13T19:58:19Z2009-03-13T20:04:08Z<p>Don't store a UTC offset for the user - that's not enough to know the full time zone information. You should store their <a href="http://en.wikipedia.org/wiki/Zoneinfo" rel="nofollow">Olson time zone ID</a>, e.g. "Europe/London". Then you can display any UTC time in the local time, taking into account historical changes, daylight savings etc.</p>
<p>EDIT: It looks like the <code>TimeZoneInfo</code> ID isn't actually in the normal Olson format - but so long as there's something sensible you can display to the user (as a choice), and an ID you can retrieve the zone from later on, that's probably okay... you may have difficulties if you need to interoperate with other systems later though.</p>
<p>You should <em>ask</em> the user for their time zone (possibly trying to guess it first through JavaScript) - they will have more information than you do.</p>
<p>You should investigate the <a href="http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx" rel="nofollow">TimeZoneInfo</a> class for more on this - I can't say I've used it much myself, but it's the way to go as of .NET 3.5. In particular, <a href="http://msdn.microsoft.com/en-us/library/system.timezoneinfo.findsystemtimezonebyid.aspx" rel="nofollow">FindSystemTimeZoneById</a> and <a href="http://msdn.microsoft.com/en-us/library/system.timezoneinfo.getsystemtimezones.aspx" rel="nofollow">GetSystemTimeZones</a> will be important.</p>
<p>Time zones are a pain in general, but at least <code>TimeZoneInfo</code> gives a lot more support than the old <code>TimeZone</code> type.</p>
http://stackoverflow.com/questions/644342/using-timezones-on-website-using-asp-net-3-5-sql-server-2005/644367#6443670Answer by TheTXI for Using TimeZones on website using ASP.Net 3.5 / SQL Server 2005TheTXI2009-03-13T19:58:51Z2009-03-13T19:58:51Z<p>That sounds like the most straightforward way to me. The only slip ups I could see occurring are some areas (such as parts of Indiana and I think all of Arizona) don't cooperate with daylight savings time, so you'll have to take extra precautions displaying the correct time for them.</p>