We store our UTC date / time information on our SQL Server.
When using SQL Reporting Services, we want to display this data in the time zone of the client workstation, but it seems like using an expression like:
System.TimeZone.CurrentTimeZone.ToLocalTime(Fields!DateStarted.Value)
... converts to the time zone of the server, and not to the client workstation?
Is there a way to perform this conversion locally or pass the local time zone to the server for conversion?
Thanks in advance Matt
Matt
source
share