views:

27

answers:

1

so i have a multi-tier web app in asp.net mvc i use the asp.net localization with resource files, and it's ok for pages, but i have also some messages (not in the UI) how do i localize the stuff that is in other class libraries ?

+1  A: 

I have found the solution, it's very easy, I have put the resource files in a separate class library and everybody knows the current language though CurrentThread.UICulture

Omu