I pick up data which includes some date columns. Date returned from database is in UTC format. I feed this data to report viewer and want to show the date in local format, considering daylight saving.
I can do that from server side but I want the conversion to be according to the client machine timezone.
Is there any way to do it ?
Is your client a web page or a .NET app? If it is a .NET app you could do it like this. Firstly send your client timezone to your server like so:
Then on your server:
If this is a webapp use this javascript to send the offset to the server:
Then on your server: