如何在asp.net MVC中制作多语言网站?

SAH*_*GLA 3 asp.net asp.net-mvc resources localization

我不明白在哪里放资源,我们如何从中获取价值?

Fen*_*ton 6

您将所有语言资源放入资源(.resx)文件中.你基本上每种语言都有一个资源文件,但是所有相同的"名称"项目都有各自的"值" - 例如......

MyResource.resx (this will be the default)
Name: Welcome
Value: Welcome

MyResource.de-de.resx  (this will be used for German text)
Name: Welcome
Value: Wilkommen
Run Code Online (Sandbox Code Playgroud)

然后,您可以在整个应用程序中使用这些资源.

在视图中:

<%= MyResource.Welcome %>
Run Code Online (Sandbox Code Playgroud)

有关本地化的更多详细信息,请访问以下内容:

http://www.eworldui.net/blog/post/2008/05/ASPNET-MVC---Localization.aspx