G
Guest
I have an ASP.NET 2.0 C# web application that is contacting an Exchange
server using WEBDAV. It allows the users to look up appointments for a
future date. The problem I have is determining the correct client time zone.
Note that Exchange stores everything in UTC time.
I am able currently able to use javascript to ask the client what time zone
they are in, but this is only for the "today" (the current day) and not for a
day in the future. To my knowledge there is no client side call that can be
preformed to determine the timezone offset for a future date.
So even if I pass the timezone offset from the client to the server, there
is no Timezone manager class to my knowledge that will take that offset and
translate it into a Timezone object of which I could then use to look up the
offset for a future date.
Please let me know if a solution for this exists. The only thing I can
think of is writing a huge TimezoneManager class to handle this issue, I hope
a better workournd exists.
server using WEBDAV. It allows the users to look up appointments for a
future date. The problem I have is determining the correct client time zone.
Note that Exchange stores everything in UTC time.
I am able currently able to use javascript to ask the client what time zone
they are in, but this is only for the "today" (the current day) and not for a
day in the future. To my knowledge there is no client side call that can be
preformed to determine the timezone offset for a future date.
So even if I pass the timezone offset from the client to the server, there
is no Timezone manager class to my knowledge that will take that offset and
translate it into a Timezone object of which I could then use to look up the
offset for a future date.
Please let me know if a solution for this exists. The only thing I can
think of is writing a huge TimezoneManager class to handle this issue, I hope
a better workournd exists.