views:

60

answers:

2

Hi everyone, im curious about doing Globalization in asp.net MVC with globalization File and a Session["lang"]

the session lang can be setup quite easy to change, but the problem here is the Globalization File.

What should i do and how should i do to implement this?

Thank you very much

PS: I've search on Google and here for some solution but most likely with asp.net mvc we need to create another VIEW folder for EN, JP, FR, and this can cause a lot of trouble in the future to change the design.


Actually, it's mean translation: -> switching languages, something like that

A: 

There's an article on l10n and i18n over at codeproject.com. For mere translation (= localization), it suggests either resource files (which is very common for .NET applications) or a database.

Your question doesn't make clear if you only want to translate your project or also want to globalize it?!

AndiDog
actually, it's translation, so that i can switch between language easily, also for the purpose of separate fixed text from template
DucDigital
A: 

http://www.ducdigital.com/2010/01/10/noob-guide-to-globalization-in-asp-net-mvc/

after a big research, i got this article, very useful :)

DucDigital