I need to set default timezone for my ASP.NET to Asia/Dhaka or GMT+6 timezone. But i cannot find a way to change it globally. There is a lot of reference on Stackoverflow an
You can Change TimeZone...And Get Date
DateTime utcTime = DateTime.UtcNow; TimeZoneInfo myZone = TimeZoneInfo.FindSystemTimeZoneById("India Standard Time"); DateTime custDateTime = TimeZoneInfo.ConvertTimeFromUtc(utcTime, myZone); Str.Append(custDateTime.ToString());