Page 1 of 1

Client Time Zone

Posted: Tue Oct 15, 2002 2:48 pm
by 4byte
Is there a means of retreiving the Time Zone of a Clients Browser/machine?

Posted: Tue Oct 15, 2002 9:58 pm
by volka
the time zone is not part of the request-data by default
but take a look at http://www.devguru.com/Technologies/ecm ... /date.html
  • using javascript you can either
  • send the offset to GMT via getTimezoneOffset() within your request client->server
  • or send all dates server->client as ...parse('xyz GMT') in an clientside script that uses getTimezoneOffset() to create appropriate time-values in the document