I am probably doing something wrong -- but cant figure why. I have a DateTime field in my DB keeping a UTC time
My server is in the US, and the browser is in Europe.
The PageLoad Code is as follow:
DateTime t = DateTime.SpecifyKind((DateTime)rdr["startTime"], DateTimeKind.Utc);
label1.Text = t.ToLocalTime().ToString();
The time displayed I get is US localtime and not Europe. What should I do to display the browser's localtime?
Thanks!