如何访问 .ashx 文件中的本地化资源?

发布于 2024-09-16 08:50:29 字数 84 浏览 7 评论 0原文

我有一个 ashx 文件,它返回本地化消息。这是从 Ajax 请求调用的。我需要访问 ashx 文件中的 Asp.net ResourceManager。

I have an ashx file which returns a localised message. This is called from an Ajax request. I need to access the Asp.net ResourceManager in the ashx file.

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

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

发布评论

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

评论(2

玩世 2024-09-23 08:50:29

以下代码对我有用。

HttpContext.GetGlobalResourceObject("classKey", "resourceKey") as string;

Following code worked for me.

HttpContext.GetGlobalResourceObject("classKey", "resourceKey") as string;
梦幻的味道 2024-09-23 08:50:29

应用程序中的任何资源都应该可以在 Resources 命名空间下访问。

对于名为 LocalMessages.en.resx 的资源文件:

ReturnMsg = Resources.LocalMessages.MyAjaxMessage;

为了使智能感知正常工作,请确保应用程序已编译一次以从 resx 文件创建资源对象。

Any resources in the app should be accessible under the Resources namespace.

For a resource file called LocalMessages.en.resx:

ReturnMsg = Resources.LocalMessages.MyAjaxMessage;

For intellisense to work, make sure app has been compiled once to create the Resources objects from resx files.

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