调试自定义区域性问题
在本地计算机上调试时,我遇到了自定义区域性问题。我有一个网站,该网站为内部用户和外部用户提供单独的 resx 文件(术语不同)。
我们使用自定义区域性 en-GB-external 和关联的 resx 来实现此目的。内部客户端将使用 en-GB resx 文件。
在一台PC上调试时,我只得到en-GB.resx文件,而不是en-GB-internal.resx文件。但是,如果我构建代码并将其放在服务器上,然后从同一台 PC 上进行浏览,它就可以工作。
如果我在另一台 PC 上调试相同的代码(从 svn 检出),它可以正常工作。
我可以从哪里开始确定为什么在一台 PC 上调试时不起作用?
I am having an issue with a custom culture when debugging on my local machine. I have a web site that has a separate resx file for internal vs external users (terminology is different)
We implement this using a custom culture en-GB-external and associated resx. Internal clients would use the en-GB resx file.
On one PC when debugging, I only get the en-GB.resx file, not the en-GB-internal.resx file. However if I build the code and drop it on a server, and browse from the same PC it works.
If I debug the same code (checked out from svn) on another PC it works fine.
Where can I even start looking to determine why this doesn't work when debugging on one PC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许检查 IE 的文化设置。
Check IE's culture settings perhaps.
我们遵循 msdn 实施自定义文化的示例。然而,我们会在页面生命周期的早期就切换文化。通过让不同的用户登录两个不同的页面解决了上述问题。然后我们重写InitializeCulture:
We followed the msdn example of implementing custom cultures. However we then switch cultures as early in the page lifecycle as possible. The issue above was fixed by having the different users login on 2 different pages. We then override the InitializeCulture: