var UkZone = TimeZoneInfo.FindSystemTimeZoneById("GMT Standard Time");
var DateTimeUkLocal = TimeZoneInfo.ConvertTime(DateTime.UtcNow, TimeZoneInfo.Utc, UkZone);
How can i change timezone in mvc5 app
AHSAN ALI
101
Reputation points
i want to replace datetime.now with uk time zone
i have 3 layer in my app.
2 answers
Sort by: Most helpful
-
Bruce (SqlWork.com) 68,311 Reputation points
2023-10-26T22:23:54.2366667+00:00 -
Lan Huang-MSFT 30,071 Reputation points Microsoft Vendor
2023-10-27T02:55:16.62+00:00 Hi @AHSAN ALI,
You can use TimeZoneInfo.ConvertTime:Converts a time to the time in a particular time zone.
You can use this code to convert the time:
var now = DateTime.UtcNow; var timeZoneInfo = TimeZoneInfo.FindSystemTimeZoneById("GMT Standard Time"); var britishLocalTime = TimeZoneInfo.ConvertTime(now, timeZoneInfo);
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.