In my upcoming MVC4 application that will have a global audience, one of the features involves recording the date and time when a transaction is added or modified.
Since I am storing the transaction datetime in UTC format, what would be the most effective way to display the date as per user expectation on the client side?
Should I implement a JavaScript function for this purpose or handle it within the view itself?