Is here a way to change timezone setting for a request, for example, at Application_AcquireRequestState

then for the whole request, no matter when I use Datetime.ToLocalTime (or new Datetime() etc), a local time version will be shown to current user/request?

(or I have to setup timezone for everytime I use ToLocalTime )

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

You need to manage TimeZone info using thread context/storage. There is no 1:1 mapping from Culture to TimeZone (it's a many:many relationship) (Reference Post). There are many ways to do this - such as using a custom ThreadPrincipal with context members or Thread Local Storage (TLS)

link|improve this answer
thanks. I think I just have to setup timezone when each time output a time, which much easier :) – Eric Yin Dec 9 '11 at 17:37
feedback

Override InitializeCulture() in your view and set the Thread.CurrentThread.CurrentCulture and Thread.CurrentThread.CurrentUICulture properties to the culture of your choice.

link|improve this answer
Do you have some sample code, I already have code on culture, but I do not think culture and timezone are related. – Eric Yin Dec 9 '11 at 8:39
You're right, DateTime.ToLocal() does not use the current culture, but TimeZoneInfo.Local. You can not change this value easily. – Sjoerd Dec 9 '11 at 8:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.