We have a reporting application in which all DateTimes are stored in UTC in a database (SQL Server 2005)
The reporting application works just to get a DataTable and bind to a DataGrid that displays information.
If we know the time zone of registered users (for example, +3 GMT), is there a way to update the dates of the DataTables that are now displayed in the user’s time zone in UTC?
We know that each column / row in a DataTable can process and do the conversion, but is there a more efficient way?
source
share