.NET Projects: Where can I put the .resx files?
3 answers
If you right click on your project in VS Solution Explorer you should have a New Folder option then you will have a list of the folder you can create. App_GlobalResources and App_LocalResources are different.
For shared strings and project resources, add content to the App_Global forlder application. for specific form resources, add content to the App_Local folder instead.
0
source to share