asp.net 2.0 中的全球化和本地化
我的应用程序托管在我位于印度的一位客户上,我的客户的分支机构也在美国,他们从印度访问相同的应用程序。
场景
当任何印度员工通过表格进行输入时,印度的时间戳和日期会在数据库中更新 同时,当任何员工从美国时间戳和日期进行输入时,都会根据美国文化信息进行更新,我们需要的是,当来自美国站点的员工更新数据时间戳和印度日期时,应在数据库中更新。
I am having application hosted on one of my client located in India,also the branch of my client is in U.S, they access the same application from india.
Scenario
When any employee of india make an entry through forms the timestamp and date of India is been updated in the database
Also at same time when any employee make an entry from U.S. timestamp and date is updated according to us cultureinfo, what we need is when employee from U.S. site updates the data timestamp and date of India should be updated in the database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,您应该将所有日期和时间存储为 UTC,然后使用用户时区相应地显示它。
In general, you should store all date and time in UTC, and then display it accordingly using user time zone.