vote up 0 vote down star

Hi, I am getting client date in javscript function using "new date()" object.But this object is considering the properties set for Date&Time control in control panel of the system.

For example, If I check the check box of Date&Time control of the system(control panel) "Automatically adjust clock for daylight saving changes", then I am getting the date(from javscript) according to the Daylight saving and if I uncheck it, I am getting date according to the standard time.

What I need is to get the date from Javscript function irrespective of the Date&Time control of the control panel.

Thanks Rupa.

flag

50% accept rate

2 Answers

vote up 0 vote down

Why can't you just generate the date from the server-side, where you have more control over this?

link|flag
Application(asp.net) is deployed in EST timezone and the this is used by the people in different time zones and the code is completely based on client time.Please suggest any way to solve the problem. – Rupa Oct 5 at 11:11
Sounds like that application needs to be refactored. – meder Oct 5 at 15:11
vote up 0 vote down

As you say, you are getting the time on the client, which is determined by the system clock of the client computer. If you want a constant time, you will have to get the time server side and expose it to your client-side script somehow.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.