如何访问 .ashx 文件中的本地化资源?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下代码对我有用。
Following code worked for me.
应用程序中的任何资源都应该可以在 Resources 命名空间下访问。
对于名为 LocalMessages.en.resx 的资源文件:
为了使智能感知正常工作,请确保应用程序已编译一次以从 resx 文件创建资源对象。
Any resources in the app should be accessible under the Resources namespace.
For a resource file called LocalMessages.en.resx:
For intellisense to work, make sure app has been compiled once to create the Resources objects from resx files.