Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Real World ASP.NET MVC Applications with Source Code? [closed]

Tags:

asp.net-mvc

I think all of the tutorials and stuff are great on blogs, but sometimes when you actually build an application the way you would code or interact with a system is quite different.

I was wondering if you all knew some good real world type ASP.NET MVC applications that have the source code available for experimentation.

Off hand I am aware of the following, but I'm interested to see if there are more:

  • Flickr Xplorer ASP.NET MVC website using jQuery (live website)

  • Kigg (live website)

  • Forums: Create the Perfect Application

  • MVC Storefront (thanks to cristianlibardo for reminding me of this one)

like image 408
Elijah Manor Avatar asked Oct 13 '08 18:10

Elijah Manor


People also ask

Is ASP.NET MVC still in use?

ASP.NET MVC is no longer in active development. The last version update was in November 2018. Despite this, a lot of projects are using ASP.NET MVC for web solution development. As to JetBrains' research, 42% of software developers were using the framework in 2020.

Is ASP.NET MVC open source?

It has just been announced that ASP.NET MVC has been released under Microsoft's open source license. The Microsoft Public License is certified by the Open Source Initiative, making is appropriate for most projects requiring an open source license including Novell's Mono.

What is MVC in .NET with example?

ASP.NET supports three major development models: Web Pages, Web Forms and MVC (Model View Controller). ASP.NET MVC framework is a lightweight, highly testable presentation framework that is integrated with the existing ASP.NET features, such as master pages, authentication, etc. Within .


3 Answers

I'm sure you know of storefront. I've heard it's a good tutorial and it comes with source code.

like image 192
Cristian Libardo Avatar answered Oct 21 '22 12:10

Cristian Libardo


Oxite

Oxite is a simple blog engine written using ASP.NET MVC, and is designed with two main goals:

  1. To provide a sample of 'core blog functionality' in a reusable fashion. Blogs are simple and well understood by many developers, but the set of basic functions that a blog needs to implement (trackbacks, rss, comments, etc.) are fairly complex. Hopefully this code helps.
  2. To provide a real-world sample written using ASP.NET MVC.

Links

  • Oxite Website on VisitMix
  • Oxite on CodePlex

Update: Karl Seguin critizing the Oxite implementation: http://codebetter.com/blogs/karlseguin/archive/2008/12/15/oxite-oh-dear-lord-why.aspx

like image 30
splattne Avatar answered Oct 21 '22 12:10

splattne


I learnt using NOPCommerce. It showcases pretty much every feature of ASP.NET MVC and the latest version is on MVC5.

like image 41
oliverdejohnson Avatar answered Oct 21 '22 12:10

oliverdejohnson