up vote 0 down vote favorite
share [g+] share [fb]

I have an ASP.Net website, "MyApp", which contains the following resources files:

  1. WebResources.resx
  2. WebResources.es.resx

The website references a library project, "MyLib" from which I want to access those resources files. Here is the code I'm attempting:

var rm = new ResourceManager("MyApp", Assembly.GetExecutingAssembly());
subject = rm.GetString("HelloMessage"); //always string.empty

The problem is that the executing assembly is always "MyLib" instead of "MyApp". Is it possible to access the resource files embedded in the website project from a library project?

Thanks for any help, -Keith

link|improve this question

feedback

1 Answer

var res= HttpContext.GetGlobalResourceObject(resourceFile, resourceKey);

replace resourceFile with the resource file name (Without .resx).

replace resourceKey with the key name .

public static string GetResourceString(string resourceFile, string resourceKey)
{
 if (HttpContext.Current == null)
     return resourceKey;
 var res = HttpContext.GetGlobalResourceObject(resourceFile, resourceKey);
 if (res == null)
 {
     // Log missing key here
     // ....
     res = resourceKey;
 }
 return res;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.