Is there an official ASP.NET MVC application / sample application?

I am trying to find a good help application for ASP.NET MVC. By β€œlink” I mean an application that bends all the functionality in a way authorized by Microsoft, for example:

  • Main pages
  • Partial views
  • Modified Models
  • Authentication
  • Custom routes
  • etc...

The open source examples that are located there ( CodeCampServer , SutekiShop ) are either significantly added to the base structure or do not use all the baked functions.

+6
asp.net-mvc
source share
5 answers

Have you seen Rob Connery MVC Storefront webcast collection?

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

Source:

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

+6
source share

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

As for the official, the closest will be Rob Connery, who was mentioned.

+2
source share

This is not official, but you can check out Kigg: http://www.codeplex.com/Kigg

This is a significant Asp.net MVC Digg clone with some decent code in it. Used on dotnetshoutout.com

+2
source share

I would consider the Nerd Dinner MVC link: http://nerddinner.codeplex.com/ for people who are just starting

0
source share

Although it may be a bit late for the show, I believe the ASP.net team would like people to start using the MVC Music Store as an official example of the mvc link. The Music Store application uses the Razor viewer with the first Entity Framework code approach (also demonstrates the database first), as well as examples of dependency injection, test-based development, jQuery integration, and the receipt and use of NuGet packages.

The second reference example seems to be more on the cutting edge of things and is provided by people with patterns and practices. This is called the Silk Project and uses the latest web standards such as HTML5, CSS3 and ECMAScript 5, as well as modern web technologies such as jQuery, Internet Explorer 9 and ASP.NET MVC3.

These together are likely to show you the latest ASP.net MVC developments along with some pretty neat ideas and examples.

0
source share

All Articles