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.

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,542 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Bruce (SqlWork.com) 68,311 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

  2. 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.


Your answer

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