简单的。我想本地化我的应用程序。我已经用谷歌搜索了几天,并尝试了一百万种不同的方法来获取我的资源。我成功的唯一方法是使用标准的 asp.net 文件夹“App_LocalResource”,将资源文件公开并给它们一个Custom Tool Name
. 然后我可以在视图中导入Custom Tool Name
with @using
。
我的问题是当我改变文化时语言/资源项没有改变。
这是我在 global.asax 中更改它的方法:
protected void Application_AcquireRequestState(object sender, EventArgs e)
{
if (HttpContext.Current.Session != null)
{
CultureInfo ci = (CultureInfo)this.Session["Culture"];
if (ci == null)
{
string langName = "en";
string autoLang = "";
if (HttpContext.Current.Request.UserLanguages != null && HttpContext.Current.Request.UserLanguages.Length != 0)
{
autoLang = HttpContext.Current.Request.UserLanguages[0].Substring(0, 2);
}
if (autoLang == "da")
langName = autoLang;
ci = new CultureInfo(langName);
this.Session["Culture"] = ci;
}
Thread.CurrentThread.CurrentUICulture = ci;
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(ci.Name);
}
}
所以文化要么是da
要么en
。但我注意到资源文件的名称必须具有特定的语法。必须有一个没有国家/文化代码的默认值(在本例中为英语),并且其他默认值已命名为 reFile.da-DK.resx。它必须同时具有语言和文化代码。
我担心资源处理程序可以识别我的文件,因为文化设置为“da”而不是“da-DK”。如果我将我的da
资源文件命名为 resFile.da.resx 我无法导入Custom Tool Name
我的资源文件。
我该怎么做才能解决这个问题?