show/hide this revision's text 3 edited body; edited tags; edited title

How to convert time conversion.between timezones (UTC to EDT)?

Hi,

I need to have a common function to convert UTC time to EDT. I have a server in India. An application in it needs to use EDT time for all time purposes.

I am using .NET 3.5.

I found this on some other forum.

DateTime eastern = TimeZoneInfo.ConvertTimeBySystemTimeZoneId(
        DateTime.UtcNow, "Eastern Standard Time");

When i tried with "Easten Daylight Time" I got an error."error.

"The time zone ID 'Eastern Daylight Time' was not found on the local computer".

Please help with this or any other solution.

show/hide this revision's text 2 edited tags
show/hide this revision's text 1

time conversion.

Hi, I need to have a common function to convert UTC time to EDT. I have a server in India. An application in it needs to use EDT time for all time purposes.

I am using .NET 3.5.

I found this on some other forum.

DateTime eastern = TimeZoneInfo.ConvertTimeBySystemTimeZoneId( DateTime.UtcNow, "Eastern Standard Time");

When i tried with "Easten Daylight Time I got an error."

"The time zone ID 'Eastern Daylight Time' was not found on the local computer".

Please help with this or any other solution.