ASP.NET Globalization & Localization Take #2
In my previous post “.Net 2.0 App_GlobalResources within VS.NET 2008” I was successfully manipulate string stored in satellite assembly that was the isolation test to make sure that thing work.
The next move is to integrate the technique with my MonoRail solution. In theory the trick should work like magic;
BUT nope I got nothing in return I verify the satellite assembly through Reflection nothing different. So what the heck is going on ???
Now take a look at how I solved the mismatch:
ASP.NET Web Application
ResourceManager rm = new ResourceManager( "Web.Applications2.Strings", Assembly.GetExecutingAssembly());
Castle.MonoRail
ResourceManager rm = new ResourceManager( "Basic.Web.Resources.Strings", Assembly.GetExecutingAssembly());
Can you spot the different?


