Trying to access a specific localised resource file such as WebResource.en.us which is located in my App_GlobalResources folder using the following code:
string resData = GetGlobalResourceObject("WebResource.en.us", "SomeResource").ToString();
but this keeps giving me the error below:
Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "Resources.WebResource.en-us.resources" was correctly embedded or linked into assembly "App_GlobalResources.bpqqrnv4" at compile time.
Any ideas ?