Reputation: 313
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
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