I have created a page where weather data is displayed for the user (I get the data via api call). I have the UTC-timestamp of the data from the api call.
My problem is that if I transform the UTC time via ToLocalTime() the local time of my Server is presented not the local time of the users browser.
Is there a way to show the user "their" time: UTCTime.ToUserTimeZone() with C# and Blazor only?
I have zero knowledge of JS etc. or is that the only way. I googled and found alot of answeres where I have to implement JavaScript to "get" the user localisation.
Thanks for your help and time