Google News
logo
ASP.NET - Interview Questions
Explain Local Resources and Global Resources ASP.NET?
Local Resources Global Resources
A local resource can only be accessed by the page that created it. Accessible by all pages.
Difficult to maintain when the website has a lot of localized content as each page requires a resource file for each language. Only one file per language is required.
Stored in the App_LocalResources folder. Stored in the App_GlobalResources folder.
Advertisement