在 ASP.NET 中获取站点区域日期时间

发布于 2024-11-25 03:22:53 字数 325 浏览 1 评论 0原文

我需要通过 CultureInfo 对象获取真正的 DateTime 。例如,我的网站位于美国公司服务器(有自己的美国时间),但网站位于意大利(示例),那里的时间不同,并且在网站上我应该显示意大利时间,而不是美国时间。在 web.congig 中,我有 currentCulture="it-It"

是否有可能获得网站时间,如果可以,正确的方法是什么? 实际上,如果有这样的功能就太好了:

public static DateTime GetSiteDate(CultureInfo ci)
{
....
return siteDate;
}

谢谢!

I need to get real DateTime by CultureInfo object. For example, my site is on US company server (that has own US time) but site is for Italy (example), where time is different, and on the site I should show Italy time, not US. In web.congig I have currentCulture="it-It"

Is it possible to get time for site and if so, what is the right way to do it?
Actually it would be great to have a function like:

public static DateTime GetSiteDate(CultureInfo ci)
{
....
return siteDate;
}

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

季末如歌 2024-12-02 03:22:53

仅根据文化不太可能获得当地时间,主要是因为时区与国家/地区并不一一对应。虽然意大利的时区是中欧标准时间(如果我没记错的话),但每个国家并不总是有一个时区。例如,在美国至少有四个时区。

It is likely not possible to get the local time based on culture alone, mostly because time zones don't correspond one-to-one to countries. While Italy's time zone is Central European Standard Time (if I'm not mistaken), it will not always be the case that each country has a single time zone. For example, in the United States there are at least four time zones.

尘曦 2024-12-02 03:22:53

查找日期 DateTime.Now();
查找区域 DateTime.Zone();

如果您需要很多,那么在 ASP.NET 中您不必使用 Java 脚本来满足您的需求。

to find date DateTime.Now();
to find zone DateTime.Zone();

If you need much, there is no chance in ASP.NET you have to make use of Java Scripts to fulfill your needs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文