Wednesday, June 18, 2008 by Oleg Zhukov
submitted by
Michael EatonIn 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.
Wednesday, June 18, 2008 by Timothy Khouri
submitted by Anonymous
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.
Friday, June 13, 2008 by Stephen Walther
submitted by Anonymous
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.
Wednesday, April 30, 2008 by Keyvan Nayyeri
submitted by
Dan HounshellIn 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.
Thursday, March 27, 2008 by Simone Chiaretta
submitted by Anonymous
In this article Simone will cover one of the main reasons for adopting the ASP.NET MVC framework: testability.
Monday, March 24, 2008 by Oleg Zhukov
submitted by Anonymous
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.
Sunday, March 23, 2008 by Mark Nischalke
submitted by Anonymous
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...
Monday, March 03, 2008 by Keyvan Nayyeri
submitted by
Dan HounshellIn 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.
Monday, March 03, 2008 by Oleg Zhukov
submitted by Anonymous
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...
Monday, February 25, 2008 by Jeffrey Palermo
submitted by Anonymous
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.
Wednesday, February 20, 2008 by Kazi Manzur Rashid
submitted by Anonymous
Learn how to develop a Digg-like application with ASP.NET MVC, LINQ to SQL and ASP.NET AJAX.
Friday, February 15, 2008 by Simone Chiaretta
submitted by Anonymous
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.
Wednesday, January 30, 2008 by Keyvan Nayyeri
submitted by
Dan HounshellIn 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.
Monday, January 21, 2008 by Keyvan Nayyeri
submitted by
Dan HounshellMicrosoft 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.
Thursday, December 06, 2007 by Rob Conery
submitted by
Dan HounshellMVC 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).