How can i change timezone in mvc5 app

AHSAN ALI 81 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 MVC
ASP.NET MVC
A Microsoft web application framework that implements the model-view-controller (MVC) design pattern.
1,064 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Bruce (SqlWork.com) 49,051 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 20,136 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.