Finding out timezone from TimeZone offset
Hi,
I'm using JavaScript to find out the local time on client, setting it to a cookie.
I then retrieve the value in a JSP page to find out the correction necessary for adjusting the time (in UTC) to local time. The problem, however, is that JavaScript returns the Daylight Savings Offset and the Zone_offset as one total, making it impossible to find out what TimeZone this Offset maps to.
My utility class is using the myCalendarObj.setTimeZone (tz) to adjust the time stamp.
Any suggestions on how I could find out what TimeZone my offset maps to, or any other suggestion?
Regards,
Mark

