HttpContext.GetGlobalResourceObject 始终返回 null

发布于 2024-07-26 15:12:25 字数 352 浏览 5 评论 0原文

我在 App_GlobalResources 文件夹中创建了两个文件:

SiteResources.en-US.resx
SiteResources.sp-SP.resx

两个文件都包含“SiteTitleSeparator”的值。

这是我想要做的(以下行始终返回 null):

string sep = (string)GetGlobalResourceObject("SiteResources", "SiteTitle");

请注意,页面上的 Culture 属性已设置。

欢迎用 VB 和 C# 提供答案。

I created two files in the App_GlobalResources folder:

SiteResources.en-US.resx
SiteResources.sp-SP.resx

Both contain a value for "SiteTitleSeparator".

Here is what I am trying to do (The following line always returns null):

string sep = (string)GetGlobalResourceObject("SiteResources", "SiteTitle");

Note, that the Culture property on the page is set.

Answers in both VB and C# will be welcomed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ぃ弥猫深巷。 2024-08-02 15:12:35

是的:必须有一个不带区域代码的 .resx 作为默认文件。

Yes: there has to be one .resx without a region code which will serve as a default.

み格子的夏天 2024-08-02 15:12:34

我将 SiteResources.en-US.resx 的名称更改为 SiteResources.resx,现在一切正常。

看来它们一定是一种不变的资源。

I changed the name of SiteResources.en-US.resx to SiteResources.resx and now everything works just fine.

Seems theer must be one invariant resource.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文