Pranesh Nair
Pranesh Nair

Reputation: 313

FindSystemTimeZoneByID in TimeZone

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 ?

Upvotes: 0

Views: 843

Answers (2)

Jakob Gade
Jakob Gade

Reputation: 12419

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. :)

Upvotes: 3

Bala R
Bala R

Reputation: 108937

It will only check the server's system.

Upvotes: 1

Related Questions