环境:VS2005,C#
我在WebApplication1工程文件下有个有个文件夹App_GlobalResources,里面有两个资源文件,分别是:strings.zh-CN.resx和strings_en_us.resx,现在调用它,代码如下:  CultureInfo ci = CultureInfo.CurrentCulture;
  ResourceManager rm = new ResourceManager("WebApplication1.App_GlobalResources.strings", Assembly.GetExecutingAssembly());
resourceValue = rm.GetString(key,ci);结果:
未能找到任何适合于指定的区域性或非特定区域性的资源。请确保在编译时已将“WebApplication1.App_GlobalResources.strings.resources”正确嵌入或链接到程序集“App_Web_t1x5evo-”,或者确保所有需要的附属程序集都可加载并已进行了完全签名。ResourceManager rm = new ResourceManager("WebApplication1.App_GlobalResources.strings", Assembly.GetExecutingAssembly());中的"WebApplication1.App_GlobalResources.strings", 应该怎样写呢