User1622957740 posted
When you say access a .resx file what do you mean exactly?
.resx resources are just XML files and there's a build provider in ASP.NET that turns these into an assembly. They must live in App_GlobalResources or App_LocalResources otherwise this process does not work correctly.
So unless you end up parsing the RESX xml data on your own somehow you can't put them into a different location.
+++ Rick ---