This is all good and fun, but I cannot get localization working on anything BUT a local file. What if I want to access a global resource?
This no Worky:
myLabel.Text = Localization.GetString("MyKey", ResolveUrl("~/App_GlobalResources/MyResources"));
Any reason why I cannot pull a resource from any file like this? The above example assumes of course that I have a file called "MyResources.resx" in the App_GlobalResources folder. I have also even tried naming it "MyResources.ascx.resx" as an experiment, which would cause it to be compatible to the implimentation of Localization.GetString(), I think???