我正在尝试
获取客户的国家/地区,因此我使用CultureInfo.CurrentCulture.问题是当我的加拿大客户使用我的网站时,他们会出现在美国网站上.
看起来CultureInfo.CurrentCulture正在返回我服务器的国家而不是他们的国家.那么我如何获得客户的国家?
您只需要在web.config
文件中将culture
属性设置为auto:
<system.web>
<globalization culture="auto" />
<system.web>
这将自动将CurrentCulture设置为客户端的文化.
如果您使用的是本地化资源,也可以将uiCulture设置为auto.