I'm working on a web application that keeps track of scheduling for my organization. There are over 100 different official locations that it can be used from. When a user logs in, the user's physical location is saved in the session.
There is a button on the application that the user can click on. I have a requirement that when the user clicks the button, the application must record what time it is at the user's physical location.
I'm aware that it may have made sense to design the application to instead use UTC internally, but the program has been using local time for years. However, thus far, I can't see that anyone ever did anything that required use of the current time (other than the date).
I can see in my database that each location has a "locale ID" that should correspond to a time-zone, but I know that there are differences in how "daylight savings time" and "summer time" are taken into account around the world.
What's an efficient way of taking into account all these things so that when the user logs in at one of 100s of locations, I can tell what time it is at the user's physical location when he clicks a button?
TimeZoneInfoclass in .Net, or a TZDB implemenation like NodaTime. The only question is how you determine the user's timezone. – Matt Johnson Mar 4 at 16:14