如何本地化 ASP.NET MVC Web 项目?语言支持
我想在 MVC 项目中支持多种语言。我已经使用 WebForms 做到了。 我使用从 Page
继承的 LocalizedPage
类。在 MVC 中,我从 System.Web.MVC.ViewPage 继承 LocalizedPage,
public class LocalizedPage : System.Web.Mvc.ViewPage
然后我的模型像这样使用它:
public class OverviewModel : Services.LocalizedPage
我的问题是它根本没有发生。我根本没有登陆 localizedPage.cs 中的调试断点。
我做错了什么?
请帮我, 小心
I would like to support many languages in an MVC project. I did it already using WebForms.
I used LocalizedPage
class inherited from Page
. In MVC I am inheriting LocalizedPage
from a System.Web.MVC.ViewPage
,
public class LocalizedPage : System.Web.Mvc.ViewPage
and then my model uses it like this:
public class OverviewModel : Services.LocalizedPage
My problem is that it nothing happens at all. I am not landing in debug breakpoint in localizedPage.cs at all.
What am I doing wrong?
Please help me,
take care
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想查看这篇文章。
You might want to take a look at this post.