Building a CMS with APS.NET Web Pages.

I see there is a the course Building a CMS with ASP.NT MVC 5. What would be the advantages of using one platform over the other?

@jwmcpeak Do you have any thoughts about the implications of using ASP.NET MVC 5 vs Web Pages?

Howdy @RJLuppino.

By platform, are you referring to the different models of ASP.NET 4 (MVC, Web Pages, and Web Forms)? Or truly different platforms: ASP.NET, PHP, Ruby, etc?

If the former, there isn’t really. ASP.NET 4 has different programming models to fit the style of different programmers. Some like MVC because of its modularity, extensibility, and focus on testing. Other developers might like the more script-like model of Web Pages. And then there’s Web Forms… (no comment =D) So citing advantages of one model over another isn’t really doable, but it’s comes down to how you like to write your web apps.

If the latter (ASP.NET vs PHP vs Ruby vs etc), then I’ll refrain from the question :wink: Whole books can be devoted to the merits of one platform over another. In truth, and this’ll sound like a cop out, there is no perfect platform. There are pros and cons to every platform. The trick is to find the platform you like.

To get back on the subject of just ASP.NET, the question will be moot. ASP.NET Core (formally known as ASP.NET 5) combined MVC, WebAPI, and Web Pages into one framework: MVC. So when ASP.NET Core is finally released, there’ll be really only one choice: MVC.

1 Like

Thank You @jwmcpeak,

I was referring to the models in ASP.NET and this answered my question.