Share via

How can i change timezone in mvc5 app

AHSAN ALI 101 Reputation points
2023-10-26T21:08:29.9866667+00:00

i want to replace datetime.now with uk time zone

i have 3 layer in my app.

Developer technologies | ASP.NET | Other

2 answers

Sort by: Most helpful
  1. Lan Huang-MSFT 30,211 Reputation points Microsoft External Staff
    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.


  2. Bruce (SqlWork.com) 83,816 Reputation points
    2023-10-26T22:23:54.2366667+00:00
    	var UkZone = TimeZoneInfo.FindSystemTimeZoneById("GMT Standard Time");
        var DateTimeUkLocal = TimeZoneInfo.ConvertTime(DateTime.UtcNow, TimeZoneInfo.Utc, UkZone);
    
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.