Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an official ASP.NET MVC reference/example app?

Tags:

asp.net-mvc

I'm struggling to find a good reference application for ASP.NET MVC. By "reference", I specifically mean an application that flexes all of the framework's features in the Microsoft-sanctioned manner, such as:

  • Master pages
  • Partial views
  • Strongly-typed models
  • Authentication
  • Custom routes
  • etc...

The open source examples that are out there (CodeCampServer, SutekiShop) either add significantly to the base framework or don't use all of the baked-in features.

like image 464
Portman Avatar asked Feb 11 '09 20:02

Portman


People also ask

Is ASP.NET MVC still in use?

It is no longer in active development. It is open-source software, apart from the ASP.NET Web Forms component, which is proprietary. ASP.NET Core has since been released, which unified ASP.NET, ASP.NET MVC, ASP.NET Web API, and ASP.NET Web Pages (a platform using only Razor pages).

What is MVC in ASP.NET with example?

MVC is a pattern known as Model-View-Controller. It is made up of three pieces; Model, View, and Controller that interact with each other to provide capabilities to the application that implements it. MVC is related to ASP.NET in much the same way as it is to an application.

Which framework is best for ASP.NET MVC?

If you are an expert at ASP.NET MVC, you need not to spend time on some other complex frameworks but ASP.NET WEBAPI is the best one for you. It works on the same lines as MVC – though it doesn't have System. Web dependency.


2 Answers

Have you seen Rob Connery's MVC Storefront Webcast Series?

http://www.asp.net/learn/mvc-videos/#MVCStorefrontStarterKit

Source Code:

http://www.codeplex.com/mvcsamples/

like image 100
Gordon Bell Avatar answered Sep 18 '22 00:09

Gordon Bell


I asked more or less the same question here: What are some projects which are examples of best practices for ASP.NET MVC?

As for official, the closest would be Rob Connery's which was mentioned.

like image 37
ajma Avatar answered Sep 20 '22 00:09

ajma