Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Jul 23, 2011 11:30 AM by mvark
Member
527 Points
458 Posts
Jul 23, 2011 04:12 AM|LINK
currently i am been using following menthod to convert from one time zone to another
TimeZoneInfo cstZone1 = TimeZoneInfo.FindSystemTimeZoneById("India Standard Time"); TimeZoneInfo cstZone2 = TimeZoneInfo.FindSystemTimeZoneById("UTC"); DateTime cstTime = TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currdatee, cstZone1.Id.ToString(), cstZone2.Id.ToString());
Is there a way that i can pass the offset value diretly to timezoneinfo e.g +05:30 for India instead of passing the name.
Participant
964 Points
241 Posts
Jul 23, 2011 04:28 AM|LINK
May be this will help:- http://stackoverflow.com/questions/832986/how-to-work-with-timezone-in-asp-net
Star
7617 Points
1104 Posts
Jul 23, 2011 11:30 AM|LINK
Adapt this snippet - http://www26.brinkster.com/mvark/codegallery/show_UTCDateTime_as_local.aspx
bhanu2217
Member
527 Points
458 Posts
Convert timezone based on offset and not name
Jul 23, 2011 04:12 AM|LINK
currently i am been using following menthod to convert from one time zone to another
TimeZoneInfo cstZone1 = TimeZoneInfo.FindSystemTimeZoneById("India Standard Time"); TimeZoneInfo cstZone2 = TimeZoneInfo.FindSystemTimeZoneById("UTC"); DateTime cstTime = TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currdatee, cstZone1.Id.ToString(), cstZone2.Id.ToString());Is there a way that i can pass the offset value diretly to timezoneinfo e.g +05:30 for India instead of passing the name.
Visual Studio 2012
Sql Server 2012
-------------------------------------
www.HermesWritings.com
Gayomard Meh...
Participant
964 Points
241 Posts
Re: Convert timezone based on offset and not name
Jul 23, 2011 04:28 AM|LINK
May be this will help:- http://stackoverflow.com/questions/832986/how-to-work-with-timezone-in-asp-net
mvark
Star
7617 Points
1104 Posts
Re: Convert timezone based on offset and not name
Jul 23, 2011 11:30 AM|LINK
Adapt this snippet - http://www26.brinkster.com/mvark/codegallery/show_UTCDateTime_as_local.aspx
Tech Tips, Tricks & Trivia (T4) | My Code Gallery