I have an MVC3 application that is recently published to a web server. This server has a different timezone than mine, and that means DateTime.Now
on this server is different from my own. That also means that all times shown on the website is shown wrong for me.
The user base for this application all live in the same time zone, so I am looking for a method to override the servers time zone, and use my own timezone instead.
I really don't want to just add or deduct hours based on the difference, since that will get messed up when daylight saving occurs.