开发者

how to localize an asp.net mvc webproject? languages support

开发者 https://www.devze.com 2023-01-15 01:48 出处:网络
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.Vi

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开发者_JAVA百科

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


You might want to take a look at this post.

0

精彩评论

暂无评论...
验证码 换一张
取 消