The only thing i know is, that DateTime should always be stored in UTC, but while displaying or getting the input it has to be the logged in User's local time.
This is to mitigate the timezone issues.
Any standards/best practices, where i have to touch minimum part of the already developed code base?
While getting a request, i can use ModelBinders (Asp.Net MVC). But what should i intercept to modify the DateTime types, while rendering out the response?
Any help will be appreciated ....