如何在 app_resource 中保存文本c# 元标签 asp net mvc
我的所有文本都在视图编码中。我更喜欢将它保存在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需在保存视图的同一文件夹中创建 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).