How to do the multilingual application in ASp.NET MVC?
Asked
Active
Viewed 1.3k times
12
-
http://stackoverflow.com/questions/291405/multi-lingual-websites-with-asp-net-mvc – Marc Gravell Mar 20 '09 at 09:33
-
1@Marc Gravell: that question addresses only the issue of URL routing – Spoike Mar 20 '09 at 09:35
-
However here is a question that answers how to localize the application: http://stackoverflow.com/questions/192465/how-to-localize-asp-net-mvc-application – Spoike Mar 20 '09 at 09:36
3 Answers
5
See:
Multiple languages in an ASP.NET MVC application
and
Multi-lingual websites with ASP.NET MVC
on this website.
3
You could do it with resource files

JSC
- 3,705
- 3
- 26
- 25
-
This shouldn't be voted down because this is the correct answer in short. Read the MVC localization guide and see that local resource files are still the correct way. Because the App_LocalResources and App_GlobalResources are only available at runtime and the new Multilingual App Toolkit is only for Windows Store, there is still no alternative. Hopefully MVC 5 will use the Windows Store method so we have one way of localizing all types of projects and following the international file format standards XLIFF. Until then compiled resources seem to be the only way which satisfies most requirements – Tony Wall Jan 24 '13 at 10:14
1
There is a nice blog post by Alex Adamyan about ASP.NET MVC 2 localization.
You can view this blog post from here :
http://adamyan.blogspot.com/2010/07/addition-to-aspnet-mvc-localization.html

ersegun
- 71
- 1
- 5