How to change time zone for an asp.net application
Sorry there is no way in .NET to change the time zone globally. The only way you have is to change the timezone of your server or rewrite all of your code. The best practice is to not rely on the system time zone at all (never use DateTime.Now). You should handle all date as … Read more