show/hide this revision's text 2 added 16 characters in body; edited tags

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!

show/hide this revision's text 1

Why LocalTime displays server time and not browser time?

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?