English 中文(简体)
我如何能够从时间上确定文化/地方。
原标题:How can I determine the Culture / Locale from a TimeZone

I am writing a multi tenant system in MVC3 C# that stores a timezone against a user s record. This is used to present dates and times in the users timezone, as all Dates are stored in the DB as UTC.

我很想知道,我是否需要用这个时间来储存一个地方,以便我能够适当安排日期。

我感到,我应该能够把当地人从时区挑选出来,但我不敢确定,我是多么空见。

最佳回答

There is no one to one mapping from time zone to locale.

For example, Germany, France and Italy all share the same time zone, but have differing locales. similarly, Greece, Finland, and Libya share time zones.

当然,如果一个国家跨越几个时区(例如美国),而且并非所有部分都遵循同样的规则来观察日光储蓄,那么,你的情况就会发生逆转。

问题回答

暂无回答




相关问题
Weird Time Issue in Python

Problem with using times in Python. Terminal > Python >>> calendar.timegm(datetime.datetime.now().utctimetuple()) 1258449380 This time indicates GMT: Tue, 17 Nov 2009 09:16:20 GMT Eclipse ...

How does a .NET process get the culture information?

I have a Windows service running (C#, .NET 2.0) on Windows Server 2003 R2. In one server the System.Threading.Thread.CurrentThread.CurrentCulture is {en-AU} and in the other {en-US}. This has caused a ...

Best way to get maximum Date value in java?

I m writing a bit of logic that requires treating null dates as meaning forever in the future (the date in question is an expiration date, which may or may not exist). Instead of putting in special ...

Date format in SQL Server

Short Question: What s the best date format to use in SQL Server? Long Explanation: We re converting our database from mysql to SQL Server. In mysql we always used int(11) to avoid the daylight ...

Converting asp.net/sql web app to be ime zone savy

Our current app stores all dates via the server s datetime. I m thinking we need to update all datetime values in the database over to UTC time. Now for displaying these dates back to the user, I ...

Check if string is of SortableDateTimePattern format

Is there any way I can easily check if a string conforms to the SortableDateTimePattern ("s"), or do I need to write a regular expression? I ve got a form where users can input a copyright date (as a ...

DateTime in PropertyGrid in .Net

I m currently working on some DateTime properties in a PropertyGrid in c#.Net. Im using the default drop-down datetime picker. My question: Is there any way to show the full date with the time? By ...

热门标签