允许用户影响使用哪种 LanguageResources.resx
我正在使用 ASP.NET 编写一个 Web 应用程序,并且使用了全局 LanguageResources.resx 文件来实现多语言功能。我的问题是我不希望框架自动检测语言并使用适当的 LanguageResources.??.resx 来加载视图。
我希望用户选择他们想要查看网站的语言,或者至少允许用户覆盖 .net 为我所做的“猜测”。
显式指定要使用哪个资源文件的最佳方法是什么?
I am writing a web application using ASP.NET and I have utilized a global LanguageResources.resx file for multilingual capabilities. My problem is that I don't want the framework to automatically detect the language and use the appropriate LanguageResources.??.resx for loading the views.
I would like the user to select the language that they would like to view the site in, or at least allow the user to override the 'guess' that .net has made for me.
What's the best way to explicitly specify which resource file to use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置 Thread.CurrentThread.CurrentCulture:
将“en”替换为语言列表中选定的值。
请参阅以下文章:
使用 C# 的多语言应用程序
Set the value of the Thread.CurrentThread.CurrentCulture:
Replace the "en" by the selected value from the languages list.
Refer to the following article:
Multilingual applications using C#