我按照以下链接中的指南创建了自定义资源提供程序: http://asp-net-whidbey.blogspot.com/2006/03/aspnet-20-custom-resource-provider.html
在.aspx页面上,我正在使用以下代码,它运行正常:
<asp:Literal ID="ltlFoo" runat="server" Text="<%$ Resources:SomeText %>" />
现在我想从代码中读取本地化的值:
string foo = Resources.GetString("SomeText");
问题是我不知道如何实例化资源管理器 任何帮助将不胜感激!
修改
我使用了以下代码,效果很好:
string foo = (string)GetGlobalResourceObject("", "SomeText");
我有什么理由不使用该代码吗?
答案 0 :(得分:1)
因此,您的资源管理器应该有一个名称,您应该可以执行与以下类似的操作。
// Create a resource manager to retrieve resources.
ResourceManager rm = new ResourceManager("items",
Assembly.GetExecutingAssembly());
// Retrieve the value of the string resource named "welcome".
// The resource manager will retrieve the value of the
// localized resource using the caller's current culture setting.
String foo = rm.GetString("SomeText");