You are not logged in! Login Create Account


ASP.NET MVC RSS Feed Everything: The Firehose
ASP.NET MVC RSS Feed (No Buzz) - less noise Everything except Buzz

The ASP.NET MVC (Model View Controller) framework is one of the most talked about and long awaited additions to the Microsoft world of web development. Find and follow all the news, announcements, blog posts, tutorials, tips, and other resources on AspDotNetMVC.com. Contact Us with any suggestions you have for the site.

ASP.NET MVC Articles ASP.NET MVC Articles RSS Feed

Know of any good articles (preferrably not blog posts) about ASP.NET MVC? Please submit an article or contact me at webmaster [AT] aspdotnetmvc.com with suggestions for links to relevant articles that should be added to this page.

 

  • Reworking ASP.NET MVC Store with MVC# Framework (6/18/2008)
    In this article Oleg examines how to rework an ASP.NET MVC application originally created by Scott Guthrie with the help of MVC# Framework. After a short introduction he provides a brief summary of the application being developed and provides exhaustive coverage of the various phases involved in the development with the help of relevant source code and screenshots.
  • ASP.NET MVC in the Real World (6/18/2008)
    MVC (the "model view control" pattern) isn't new, but it is new to ASP.NET. If you're like me, you may have been impressed by a demo, but you've probably thought "how does this work in the real world?" I hope to answer that question in this article.
  • Stephen Walther's ASP.NET MVC Tips (6/20/2008)
    While technically not an article, it is a good series of tips that Stephen Walther is putting together on his blog. Definitely worth checking out and bookmarking.
  • Building a Simple Blog Engine with ASP.NET MVC and LINQ - Part 4 (6/18/2008)
    In the fourth part of this series, Keyvan talks about the unit testing concepts related to the MVC pattern and how Microsoft has adapted these concepts for its ASP.NET MVC framework. He shows these principles and the process that should be followed to unit test an ASP.NET MVC application.
  • ASP.NET MVC Framework – Part 2: Testing (6/18/2008)
    In this article Simone will cover one of the main reasons for adopting the ASP.NET MVC framework: testability.
  • MVC# - A Model-View-Presenter Framework for .NET (6/18/2008)
    This article gives an overview of MVC# - a Model-View-Presenter framework for .NET platform. It firstly explains the MVP pattern essentials and then walks through the key features of the MVC# framework which help building true MVP-based solutions.
  • ASP.NET MVC - Part 1 (6/18/2008)
    There are many ways to create ASP.NET web applications; however, one common problem with them all is the difficulty in separating business logic from presentation. Separating these layers allows for more modular development, code reuse, and ease of testing. A pattern that supports these features is the Model-View-Controller, or MVC. The ASP.NET team has recognized the benefits of this pattern and is working to incorporate it into ASP.NET. This article will focus on building an ASP.NET MVC web...
  • Building a Simple Blog Engine with ASP.NET MVC and LINQ - Part 3 (6/18/2008)
    In the third part of this series, Keyvan talks about the data model in his simple blogging engine. He shows some concepts related to the LINQ side of the data model to retrieve data for the blogging engine in controllers and pass them to views with the help of screenshots and source code.
  • Building Model-View-Presenter applications with MVC# framework (6/18/2008)
    In this article we will demonstrate how to build a Model-View-Presenter application with the help of the MVC# Framework. Our first example application will be intended for managing customers and their orders. It will consist of two views: the first one displays customers and has a button to switch to the second view. The second view lists orders for the selected customer and has buttons to operate on the order selected: "Accept", "Cancel" and "Ship". We will implement views both for Windows and...
  • MVP Corner: Use the ASP.NET MVC Framework to Write Web Apps without ViewState or Postbacks (6/18/2008)
    Finally, those who are comfortable with the stateless nature of web programming will be able to develop ASP.NET sites without the insulating layer that ASP.NET has always provided.
  • Kigg - Building a Digg Clone with ASP.NET MVC Part - 1 (6/18/2008)
    Learn how to develop a Digg-like application with ASP.NET MVC, LINQ to SQL and ASP.NET AJAX.
  • ASP.NET MVC Framework – Part 1 (6/18/2008)
    In this first article of the series Simone will introduce the ASP.NET MVC framework and will show how to create your first basic ASP.NET MVC application.
  • Building a Simple Blog Engine with ASP.NET MVC and LINQ - Part 2 (6/18/2008)
    In the second part of the article series about ASP.NET MVC Framework, Keyvan adds controllers to his blogging engine in order to describe how to use controllers in ASP.NET MVC and discusses some details related to controllers. He first discusses the concept of URL routing patterns and then explores the anatomy of a controller class. Finally, he examines how to implement the controllers in his sample blog application.
  • Building a Simple Blog Engine with ASP.NET MVC and LINQ - Part 1 (6/18/2008)
    Microsoft released the first CTP of ASP.NET 3.5 Extensions and it includes ASP.NET MVC Framework as one of the main extensions for ASP.NET 3.5. In the first part of this article series about building a simple blog engine with ASP.NET MVC and LINQ, Keyvan introduces the MVC pattern, ASP.NET MVC Framework, and the fundamentals of a simple blogging engine.
  • ASP.NET MVC: Using RESTful Architecture (6/6/2008)
    MVC platforms (such as Rails) have embraced RESTful architecture as a way to simplify and scale your application nicely, with the concept of web services built right in to the very core structure. In this post I'll discuss how you can architect your MVC application using a RESTful approach, and also how you can partition out your "logical bits" so you DRY (don't repeat yourself).