如何在 app_resource 中保存文本c# 元标签 asp net mvc

发布于 2024-09-16 13:35:42 字数 160 浏览 4 评论 0原文

我的所有文本都在视图编码中。我更喜欢将它保存在 app_resources 中,因为我将来会添加其他语言,而且它看起来相当干净。

我只知道我需要在文本视图中使用元标记将其与文件 app_resource 连接。如何正确操作,你能给我看一些例子吗?

非常感谢并保重, 拉吉姆斯

I have all my text inside view coding. I preffer to save it in app_resources, because i would to add other languages in future, and its look quite cleaner.

I just know that I need to use metatags in my view for text to connect it with file app_resource. How to it correctly, could you show me some examples how it looks like in view??

Thanks a lot and take care,
Ragims

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

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

发布评论

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

评论(1

陌伤浅笑 2024-09-23 13:35:42

您只需在保存视图的同一文件夹中创建 App_LocalResources 文件夹即可。然后命名为zzz.resx。然后您可以通过zzz调用您视图中的资源。

示例:*您的“查看文件夹”中有文件夹“联系人”。
您将 App_LocalResources 添加到联系人文件夹。然后,为 .resx 文件命名为 Contact.resx。

最后,在视图中,您可以使用 <%= ContactResources.Contact.Index_ContactWithUs %> 来联系联系人。 Index_ContactWithUs - 具体资源的名称。

不要忘记,在资源设置中您可以修改访问类型(内部或公共)。

You only need to create App_LocalResources folder in the same folder where you hold your views. Then give a name to zzz.resx. And then you can call resources in your view via zzz.

Example: *You have folder Contact in your View Folder.
Your add App_LocalResources to Contact folder. Then you give a name Contact.resx to your .resx file.

Finally in the view you can use <%= ContactResources.Contact.Index_ContactWithUs %> where Contact.Index_ContactWithUs - name of concrete resource.

Don't forget that in resources settings you can modify access type (Internal or Public).

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