is it possible to do internationalization in asp.net with just one resource file for all pages (I know that by default you have to have resource files for each page)
views:
137answers:
2
+1
A:
You can have global and page level resources. If the file is in app_globalresources, it's meant to be a global resource file. If it's in app_localresources, it's meant to be a page level resource file.
Pete OHanlon
2009-11-05 13:51:13
and if i need to translate something that is not in the UI but in a separate class library like DomainModel, am i going to be able to do this ?
Omu
2009-11-05 13:56:24
If it were in a separate class library, I'd bake the resources into the DLL.
Pete OHanlon
2009-11-05 14:00:53
A:
Yes, see similar question: Global resource vs. Local resource in ASP.NET
Resource link:
rick schott
2009-11-05 13:52:53