views:

137

answers:

2

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)

+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
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
If it were in a separate class library, I'd bake the resources into the DLL.
Pete OHanlon
A: 

Yes, see similar question: Global resource vs. Local resource in ASP.NET

Resource link:

ASP.NET Web Page Resources Overview

rick schott