0

I want to know whether "FindSystemTimeZoneByID" will check the client system timezone or will it be checking the server system timezone where the application has been hosted ?

Govind Malviya
  • 13,627
  • 17
  • 68
  • 94
Pranesh Nair
  • 313
  • 4
  • 11
  • 27

2 Answers2

3

The servers' timezone. You'll probably have to look into some Javascript to get the clients timezone: Check out the Date.getTimezoneOffset() method, it may be what you're looking for. And there's even a few suggestions here on SO to solve your problem. :)

Community
  • 1
  • 1
Jakob Gade
  • 12,319
  • 15
  • 70
  • 118
1

It will only check the server's system.

Bala R
  • 107,317
  • 23
  • 199
  • 210