允许用户影响使用哪种 LanguageResources.resx

发布于 2024-11-05 15:42:37 字数 218 浏览 2 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

公布 2024-11-12 15:42:37

设置 Thread.CurrentThread.CurrentCulture

Thread.CurrentThread.CurrentCulture = 
   new CultureInfo("en");

将“en”替换为语言列表中选定的值。


请参阅以下文章:

使用 C# 的多语言应用程序

Set the value of the Thread.CurrentThread.CurrentCulture:

Thread.CurrentThread.CurrentCulture = 
   new CultureInfo("en");

Replace the "en" by the selected value from the languages list.


Refer to the following article:

Multilingual applications using C#

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