I am trying to load a resx file in my .net website using:
ResourceManager rm = new ResourceManager( \"Project.Resource\", Assembly.GetExecutingAssembly() );
I'm not sure which version of .NET Framework are you using.
Try channging the way how you bring the ResourceManager to life.
ResourceManager rm =
new ResourceManager("Project.Resource",
System.Reflection.Assembly.Load("App_LocalResources"));
It should work.
This is also exposed as a static property of the automatically generated .designer.cs class of the concrete resorce manager.