Reputation: 71198
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)
Upvotes: 1
Views: 729
Reputation: 20617
Yes, see similar question: Global resource vs. Local resource in ASP.NET
Resource link:
ASP.NET Web Page Resources Overview
Upvotes: 0
Reputation: 9146
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.
Upvotes: 2