Omu
Omu

Reputation: 71198

asp.net internationalization with a single resource file for each language (for all pages)

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

Answers (2)

rick schott
rick schott

Reputation: 20617

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

Resource link:

ASP.NET Web Page Resources Overview

Upvotes: 0

Pete OHanlon
Pete OHanlon

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

Related Questions