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)
is it possible to do internationalization in asp.net with just one resource file for
Share
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.