ASP.NET MVC中如何利用资源进行全球化?
我有一个将被多家公司使用的应用程序。所以我的视图/页面正在被所有这些公司访问,并且每个公司都会有各自的内容...例如,有 5 个标题,因此每个公司都会有自己的标题每一页。因此,我为每个公司使用不同的资源文件并更改标题。
如果我只使用一个资源文件,则一切正常,但我希望在 App_GlobalResources 目录下有多个资源文件,其中我的名称为 Resource1.resx、Resource1.comp1.resx、Resource1.comp2。 resx
类似的东西,但这不起作用。
但当我使用特定于语言的符号(如 Resource1.en.resx,Resource1.es.resx
等)时,它有效。但我真的不想使用这种方式。 ..任何人都可以帮助我使用这些资源文件来更改我的内容吗?
I have an application which will be used by multiple companies.So my views/pages are being accessed by all these companies and each company will have their respective content... for e.g. there are 5 titles so each company will have their own titles on each page. So , I am using different resource files for each company and changing the titles.
If I only use one resource file everything works fine but I would like to have multiple resource files under App_GlobalResources directory where my names are Resource1.resx, Resource1.comp1.resx, Resource1.comp2.resx
something similar but this does not work.
But it works when I am using language specific notations like Resource1.en.resx,Resource1.es.resx
etc. But I really don't want to use that way...Can anyone help me getting to use these resource files to change my content ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于全球化 - 检查此 指南。
但您的问题是,您不仅希望将资源用于全球化,还希望根据访问它的公司来更改内容。不适合这项工作的工具。否则应该这样做。
For globalization - check this guide.
But Your problem is that You want to use resources not only for globalization but changing content according to which company accesses it. Wrong tool for the job. That should be done otherwise.