ASP.NET mvc3 自定义资源提供程序
我在使用 mvc3 和自定义资源提供程序时遇到一些问题。我使用数据库创建了一个自定义资源提供程序。
我在 web.config 中添加了设置。
但是如何使用资源提供者在我的视图中获取本地化字符串?
我在任何地方都找不到信息。
有人可以帮忙吗?
I am having some trouble with mvc3 and a custom resource provider. I created a custom resource provider with a database.
I added the settings in my web.config.
But how can I get localized strings in my views with the resourceprovider ?
I can't find info anywhere.
Can someone please help ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 ASP.NET MVC 3 中我一直在使用这种语法:
与资源提供者模型携手共进。我有一个返回当前源(文件、关系数据库或实体框架 ORM)的工厂。
In ASP.NET MVC 3 I have been using this syntax in view:
Hand in hand together with resource provider model. There I have a factory which returns current source (file, relation database or Entity Framework ORM).