【轉】ASP.NET MVC Framework (Part 1)

<script type="text/javascript"> // </script> <script src="/WebResource.axd?d=cCvonavza7NGh4PxQfj5rw2&t=633313095952866500" type="text/javascript"></script> <script src="/WebResource.axd?d=J1hksw-hD7hv_ORyTj2qdhHKlC7Oddil8eixZtT8LFu2jE2HPY18SDuMZGMBCOJ6l7dkFeWC7-7HlOpMTdQFThunYDA1Tuos0&t=633307998080000000" type="text/javascript"></script> <script src="/WebResource.axd?d=J1hksw-hD7hv_ORyTj2qdhHKlC7Oddil8eixZtT8LFu2jE2HPY18SDuMZGMBCOJ6l7dkFeWC7-4SIfYTq56Jecj_6aYg8oHA0&t=633307998080000000" type="text/javascript"></script> <script src="/WebResource.axd?d=gsw6MlIUDdKdmLYbbcBrECgFavPdf19SmrT-yRhrPPzBFI6VPX6o7tGsTGY18dcPaNDJOXHiwZqNK0VeaYcCwpemWP5zjHUulwMEi99D1Xg1&t=633468178520000000" type="text/javascript"></script> <script src="/WebResource.axd?d=J1hksw-hD7hv_ORyTj2qdhHKlC7Oddil8eixZtT8LFu2jE2HPY18SDuMZGMBCOJ6l7dkFeWC7-5PVAZynK7g4lylkvdYWgJzsm-QMifpaa01&t=633307998080000000" type="text/javascript"></script> <script src="/WebResource.axd?d=J1hksw-hD7hv_ORyTj2qdhHKlC7Oddil8eixZtT8LFu2jE2HPY18SDuMZGMBCOJ6l7dkFeWC7-4OzNqfh2FvZofa6ymHH65s8SbaOOvrObw1&t=633307998080000000" type="text/javascript"></script>

ASP.NET MVC Framework (Part 1)

Two weeks ago I blogged about a new MVC (Model View Controller) framework for ASP.NET that we are going to be supporting as an optional feature soon.  It provides a structured model that enforces a clear separation of concerns within applications, and makes it easier to unit test your code and support a TDD workflow.  It also helps provide more control over the URLs you publish in your applications, and can optionally provide more control over the HTML that is emitted from them.

Since then I've been answering a lot of questions from people eager to learn more about it.  Given the level of interest I thought it might make sense to put together a few blog posts that describe how to use it in more detail.  This first post is one of several I'll be doing in the weeks ahead.

A Simple E-Commerce Storefront Application

I'm going to use a simple e-commerce store application to help illustrate how the ASP.NET MVC Framework works.  For today's post I'll be implementing a product listing/browsing scenario in it.

Specifically, we are going to build a store-front that enables end-users to browse a list of product categories when they visit the /Products/Categories URL on the site:

When a user clicks on a product category hyperlink on the above page, they'll navigate to a product category listing URL - /Products/List/CategoryName -  that lists the active products within the specific category:

When a user clicks an individual product, they'll navigate to a product details URL - /Products/Detail/ProductID - that displays more details about the specific product they selected:

We'll build all of the above functionality using the new ASP.NET MVC Framework.  This will enable us to maintain a "clean separation of concerns" amongst the different components of the application, and enable us to more easily integrate unit testing and test driven development.

Creating A New ASP.NET MVC Application

The ASP.NET MVC Framework includes Visual Studio Project Templates that make it easy to create a new web application with it.  Simply select the File->New Project menu item and choose the "ASP.NET MVC Web Application" template to create a new web application using it.

By default when you create a new application using this option, Visual Studio will create a new solution for you and add two projects into it.  The first project is a web project where you'll implement your application.  The second is a testing project that you can use to write unit tests against it:

You can use any unit testing framework (including NUnit, MBUnit, MSTest, XUnit, and others) with the ASP.NET MVC Framework.  VS 2008 Professional now includes built-in testing project support for MSTest (previously in VS 2005 this required a Visual Studio Team System SKU), and our default ASP.NET MVC project template automatically creates one of these projects when you use VS 2008. 

We'll also be shipping project template downloads for NUnit, MBUnit and other unit test frameworks as well, so if you prefer to use those instead you'll also have an easy one click way to create your application and have a test project immediately ready to use with it.

Understanding the Folder Structure of a Project

The default directory structure of an ASP.NET MVC Application has 3 top-level directories:

  • /Controllers
  • /Models
  • /Views

As you can probably guess, we recommend putting your Controller classes underneath the /Controllers directory, your data model classes underneath your /Models directory, and your view templates underneath your /Views directory. 

While the ASP.NET MVC framework doesn't force you to always use this structure, the default project templates use this pattern and we recommend it as an easy way to structure your application.  Unless you have a good reason to use an alternative file layout, I'd recommend using this default pattern.

Mapping URLs to Controller Classes

In most web frameworks (ASP, PHP, JSP, ASP.NET WebForms, etc), incoming URLs typically map to template files stored on disk.  For example, a "/Products.aspx" or "/Products.php" URL typically has an underlying Products.aspx or Products.php template file on disk that handles processing it.  When a http request for a web application comes into the web server, the web framework runs code specified by the template file on disk, and this code then owns handling the processing of the request.  Often this code uses the HTML markup within the Products.aspx or Products.php file to help with generating the response sent back to the client.

MVC frameworks typically map URLs to server code in a different way.  Instead of mapping URLs to template files on disk, they instead map URLs directly to classes.  These classes are called "Controllers" and they own processing incoming requests, handling user input and interactions, and executing appropriate application and data logic based on them.  A Controller class will then typically call a separate "View" component that owns generating the actual HTML output for the request.

The ASP.NET MVC Framework includes a very powerful URL mapping engine that provides a lot of flexibility in how you map URLs to Controller classes.  You can use it to easily setup routing rules that ASP.NET will then use to evaluate incoming URLs and pick a Controller to execute.  You can also then have the routing engine automatically parse out variables that you define within the URL and have ASP.NET automatically pass these to your Controller as parameter arguments.  I'll be covering more advanced scenarios involving the URL routing engine in a future blog post in this series.

Default ASP.NET MVC URL Routing to Controller Classes

By default ASP.NET MVC projects have a preconfigured set of URL routing rules that enable you to easily get started on an application without needing to explicitly configure anything.  Instead you can start coding using a default set of name-based URL mapping conventions that are declared within the ASP.NET Application class of the Global.asax file created by the new ASP.NET MVC project template in Visual Studio. 

The default naming convention is to map the leading URL path of an incoming HTTP request (for example: /Products/) to a class whose name follows the pattern UrlPathController (for example: by default a URL leading with /Products/ would map to a class named ProductsController).

To build our e-commerce product browsing functionality, we'll add a new "ProductsController" class to our project (you can use the "Add New Item" menu in Visual Studio to easily create a Controller class from a template):

Our ProductsController class will derive from the System.Web.MVC.Controller base class.  Deriving from this base class isn't required - but it contains some useful helper methods and functionality that we'll want to take advantage of later:

Once we define this ProductsController class within our project, the ASP.NET MVC framework will by default use it to process all incoming application URLs that start under the "/Products/" URL namespace.  This means it will be automatically called to process the "/Products/Categories", "/Products/List/Beverages", and "/Products/Detail/3" URLs that we are going to want to enable within our store-front application.

In a future blog post we'll also add a ShoppingCartController (to enable end users to manage their shopping carts) and an AccountController (to enable end users to create new membership accounts on the site and login/logout of it).  Once we add these two new controller classes to our project, URLs that start with /ShoppingCart/ and /Account/ will automatically be routed to them for processing.

Note: The ASP.NET MVC framework does not require that you always use this naming convention pattern.  The only reason our application uses this by default is because there is a mapping rule that configures this that was automatically added to our ASP.NET Application Class when we created the new ASP.NET MVC Project using Visual Studio.  If you don't like this rule, or want to customize it to use a different URL mapping pattern, just go into the ASP.NET Application Class (in Global.asax) and change it. I'll cover how to-do this in a future blog post (when I'll also show some of the cool scenarios the URL routing engine enables).

Understanding Controller Action Methods

Now that we have a created a ProductsController class in our project we can start adding logic to handle the processing of incoming "/Products/" URLs to the application.

When defining our e-commerce storefront use cases at the beginning of this blog post, I said we were going to implement three scenarios on the site: 1) Browsing all of the Product Categories, 2) Listing Products within a specific Category, and 3) Showing Details about a Specific Product.  We are going to use the following SEO-friendly URLs to handle each of these scenarios:

URL Format Behavior URL Example
/Products/Categories Browse all Product Categories /Products/Categories
/Products/List/Category List Products within a Category /Products/List/Beverages
/Products/Detail/ProductID Show Details about a Specific Product /Products/Detail/34

There are a couple of ways we could write code within our ProductsController class to process these three types of incoming URLs.  One way would be to override the "Execute" method on the Controller base class and write our own manual if/else/switching logic to look at the incoming URL being requested and then execute the appropriate logic to process it.

A much easier approach, though, is to use a built-in feature of the MVC framework that enables us to define "action methods" on our controller, and then have the Controller base class automatically invoke the appropriate action method to execute based on the URL routing rules in use for our application.

For example, we could add the below three controller action methods to our ProductsController class to handle our three e-commerce URL scenarios above:

The URL routing rules that are configured by default when a new project is created treat the URL sub-path that follows the controller name as the action name of the request.  So if we receive a URL request of /Products/Categories, the routing rule will treat "Categories" as the name of the action, and the Categories() method will be invoked to process the request.  If we receive a URL request of /Products/Detail/5, the routing rule will treat "Detail" as the name of the action, and the Detail() method will be invoked to process the request, etc. 

Note: The ASP.NET MVC framework does not require that you always use this action naming convention pattern.   If you want to use a different URL mapping pattern, just go into the ASP.NET Application Class (in Global.asax) and change it.

Mapping URL Parameters to Controller Action Methods

There are several ways to access URL parameter values within the action methods of Controller classes.

The Controller base class exposes a set of Request and Response objects that can be used.  These objects have the exact same API structure as the HttpRequest/HttpResponse objects that you are already familiar with in ASP.NET.  The one important difference is that these objects are now interface based instead of sealed classes (specifically: the MVC framework ships with new System.Web.IHttpRequest and System.Web.IHttpResponse interfaces).  The benefit of having these be interfaces is that it is now easy to mock them - which enables easy unit testing of controller classes.  I'll cover this in more depth in a future blog post. 

Below is an example of how we could use the Request API to manually retrieve an ID querystring value from within our Detail action method in the ProductsController class:

The ASP.NET MVC framework also supports automatically mapping incoming URL parameter values as parameter arguments to action methods.  By default, if you have a parameter argument on your action method, the MVC framework will look at the incoming request data to see if there is a corresponding HTTP request value with the same name.  If there is, it will automatically pass it in as a parameter to your action method.

For example, we could re-write our Detail action method to take advantage of this support and make it cleaner like below:

In addition to mapping argument values from the querystring/form collection of a request, the ASP.NET MVC framework also allows you to use the MVC URL route mapping infrastructure to embed parameter values within the core URL itself (for example: instead of /Products/Detail?id=3 you could instead use /Products/Detail/3). 

The default route mapping rule declared when you create a new MVC project is one with the format: "/[controller]/[action]/[id]".  What this means is that if there is any URL sub-path after the controller and action names in the URL, it will by default be treated as a parameter named "id" - and which can be automatically passed into our controller action method as a method argument.

This means that we can now use our Detail method to also handle taking the ID argument from the URL path (e.g: /Products/Detail/3):

I can use a similar approach for the List action so that we can pass in the category name as part of the URL (for example: /Products/List/Beverages).  In the interest of making the code more readable, I made one tweak to the routing rules so that instead of having the argument name be called "id" it will be called "category" for this action.

Below is a version of our ProductsController class that now has full URL routing and parameter mapping support implemented:

Note above how the List action takes the category parameter as part of the URL, and then an optional page index parameter as a querystring (we'll be implementing server-side paging and using that value to indicate which page of category data to display with the request). 

Optional parameters in our MVC framework are handled using nullable type arguments on Controller Action methods.  Because the page parameter on our List action is a nullable int (that is what "int?" means syntactically), the MVC framework will either pass in a value if it is present in the URL - or pass in null if not.  Check out my previous post on the ?? null coalescing operator to learn a useful tip/trick on how to work with nullable types that are passed as arguments like this.

Building our Data Model Objects

We now have a ProductsController class and three action methods on it ready to process incoming web requests.  Our next step will be to build some classes that will help us work with our database to retrieve the appropriate data needed to handle these web requests.

In an MVC world "models" are the components of an application that are responsible for maintaining state.  With web applications this state is typically persisted inside a database (for example: we might have a Product object that is used to represent product data from the Products table inside our SQL database).

The ASP.NET MVC Framework enables you to use any data access pattern or framework you want in order to retrieve and manage your models.  If you want to use ADO.NET DataSets/DataReaders (or abstractions built on top of them) you can.  If you prefer to use an object relational mapper (ORM) like NHibernate, LLBLGen, WilsonORMapper, LINQ to SQL/LINQ to Entities you can absolutely use those as well.

For our e-commerce sample application I'm going to use the built-in LINQ to SQL ORM shipped in .NET 3.5 and VS 2008.  You can learn more about LINQ to SQL from my ongoing blog tutorial series that covers it (in particular make sure to check out my Part1, Part2, Part3 and Part4 posts). 

I'll start by right-clicking on the "Models" sub-directory of our MVC web project inside VS and choose the "Add New Item" option to add a LINQ to SQL model.  Within the LINQ to SQL ORM designer I'll define three data model classes that map to the Categories, Products, and Suppliers table inside the SQL Server Northwind sample database (read Part 2 of my LINQ to SQL series to learn how to-do this):

Once we've defined our LINQ to SQL data model classes, I'll then add a new NorthwindDataContext partial class to our Models directory as well:

Within this class I'll define a few helper methods that encapsulate some LINQ expressions that we can use to retrieve the unique Category objects from our database, retrieve all Product objects within a specific category in our database, as well as retrieve an individual Product object based on a supplied ProductID:

These helper methods will make it easy for us to cleanly retrieve the data model objects needed from our ProductsController class (without having to write the LINQ expressions within the Controller class itself):

We now have all of the data code/objects we need to finish implementing our ProductsController functionality. 

Finishing the Implementation of our ProductsController Class

Controllers in a MVC based application are responsible for processing incoming requests, handling user input and interactions, and executing appropriate application logic based on them (retrieving and updating model data stored in a database, etc).

Controllers typically do not generate the specific HTML response for a request.  The task of generating an HTML response is instead owned by "View" components within the application - which are implemented as separate classes/templates from Controllers.  Views are intended to be focused entirely on encapsulating presentation logic, and should not contain any application logic or database retrieval code (instead all app logic should be handled by the Controller).

In a typical MVC web workflow, Controller action methods will handle the incoming web request, use the incoming parameter values to execute appropriate application logic code, retrieve or update data model objects from a database, and then select a "View" to use to render an appropriate UI response back to a browser.  As part of picking the appropriate View to render, the Controller will explicitly pass in (as arguments) all of the data and variables required by the "View" in order to for it to render the appropriate response:

You might be wondering - what is the benefit of separating the Controller and the View like this?  Why not just put them in the same class?  The primary motivation in partitioning the application like this is to help enforce the separation of your application/data logic from your UI generation code.  This makes it much easier to unit test your application/data logic in isolation from your UI rendering logic.  It can also help make your application more maintainable over time - since it makes it harder for you to accidentally add application/data logic in your view templates.

When implementing the three controller action methods of our ProductsController class, we'll use the incoming URL parameter values to retrieve the appropriate model objects from our database, and then pick a "View" component to use to render an appropriate HTML response.  We'll use one of the RenderView() methods on the Controller base class to specify the View we want to use, as well as explicitly pass in the specific data that we want the View to use to render its response.

Below is the final result of our ProductsController implementation:

Notice that the number of lines of code in our action methods above is pretty small (two lines each).  This is partly because the URL parameter parsing logic is handled entirely for us by the MVC framework (saving us from having to write a lot of this code).  This is also partly because the product browsing scenario is fairly simple from a business logic perspective (the action methods are all read-only display scenarios). 

In general, though, you'll often find that you'll have what are sometimes called "skinny controllers" - meaning controller methods full of relatively terse action methods (less than 10 lines of code).  This is often a good sign that you have cleanly encapsulated your data logic and factored your controller logic well.

Unit Testing our ProductsController

You might be surprised that the next step we are going to work on is to test our application logic and functionality.  You might ask - how is that even possible?  We haven't implemented our Views, and our application currently doesn't render a single tag of HTML.  Well, part of what makes an MVC approach attractive is that we can unit test the Controller and Model logic of applications completely independently of the View/Html generation logic.  As you'll see below we can even unit test these before we create our Views.

To unit test the ProductsController class that we've been working on, we'll add a ProductsControllerTest class into the Test Project that was added to our solution by default when we created our ASP.NET MVC Application using Visual Studio:

We'll then define a simple unit test that tests the Detail action of our ProductsController:

The ASP.NET MVC framework has been designed specifically to enable easy unit testing.  All core APIs and contracts within the framework are interfaces, and extensibility points are provided to enable easy injection and customization of objects (including the ability to use IOC containers like Windsor, StructureMap, Spring.NET, and ObjectBuilder).  Developers will be able to use built-in mock classes, or use any .NET type-mocking framework to simulate their own test versions of MVC related objects.

In the unit test above, you can see an example of how we are injecting a dummy "ViewFactory" implementation on our ProductsController class before calling the Detail() action method.  By doing this we are overriding the default ViewFactory that would otherwise handle creating and rendering our View.  We can use this test ViewFactory implementation to isolate the testing of just our ProductController's Detail action behavior (and not have to invoke the actual View to-do this).  Notice how we can then use the three Assert statements after the Detail() action method is called to verify that the correct behavior occurred within it (specifically that the action retrieved the correct Product object and then passed it to the appropriate View).

Because we can mock and simulate any object in the MVC framework (including IHttpRequest and IHttpResponse objects), you do not have to run unit tests in the context of an actual web-server.  Instead, we can create our ProductsController within a normal class library and test it directly.  This can significantly speed up the execution of unit tests, as well as simplify the configuration and running of them.

If we use the Visual Studio 2008 IDE, we can also easily track the success/failure of our test runs (this functionality is now built-into VS 2008 Professional):

I think you'll find that the ASP.NET MVC Framework makes writing tests easy, and enables a nice TDD workflow.

Rendering UI with Views

We've finished implementing and testing the application + data logic for the product browsing section of our e-commerce application.  Now we need to implement the HTML UI for it. 

We'll do this by implementing "Views" that render the appropriate UI using the view-related data objects that our ProductsController action method provided when calling the RenderView() method:

In the code example above the RenderView method's "Categories" parameter is indicating the name of the view we want to render, and the second parameter is a list of category objects that we want to pass to the view and have it use as data to generate the appropriate HTML UI for.

The ASP.NET MVC Framework supports the ability to use any templating engine to help with generating UI (including existing templating engines like NVelocity, Brail - as well as new ones you write yourself).  By default the ASP.NET MVC Framework uses the existing ASP.NET Page (.aspx), Master Page (.master), and UserControl (.ascx) support already within ASP.NET. 

We'll be using the built-in ASP.NET view engine to implement our E-commerce Application UI.

Defining a Site.Master File

Because we are going to be building many pages for our site, we'll start our UI work by first defining a master page that we can use to encapsulate the common HTML layout/chrome across the site. We'll do this in a file called "Site.Master" that we'll create under the /Views/Shared directory of our project:

We can reference an external CSS stylesheet to encapsulate all styles for the site, and then use the master page to define the overall layout of the site, as well as identify content placeholder regions where we'll want pages to be able to fill in page specific content.  We can optionally use all of the cool new VS 2008 designer features when doing this (including the HTML split-view designer, CSS Authoring, and Nested Master Pages support).

Understanding the /Views Directory Structure

By default when you create a new ASP.NET MVC Project using Visual Studio, it will create a "Shared" sub-directory underneath the "Views" directory root.  This is the recommended place to store Master Pages, User Controls, and Views that we want to share across multiple Controllers within the application.

When building views that are specific to an individual controller, the default ASP.NET MVC convention is to store them in sub-directories under the /Views root.  By default the name of a sub-directory should correspond to the Controller name.  For example, because the Controller class we have been building is called "ProductsController", we will by default store the Views specific to it within the /Views/Products sub-directory:

When we call the RenderView(string viewName) method within a specific Controller, the MVC framework will automatically first look for a corresponding .aspx or .ascx view template underneath the /Views/ControllerName directory, and then if it can't find an appropriate view template there it will check the /Views/Shared directory for one:

Creating a Categories View

We can create the "Categories" View for our ProductsController within Visual Studio by using the "Add New Item" menu option on the Products directory and selecting the "MVC View Page" item template.  This will create a new .aspx page that we can optionally associate with our Site.Master master page to pick up the overall look and feel of the site (and just like with master pages you get full WYSIWYG designer support):

When building applications using an MVC pattern, you want to keep your View code as simple as possible, and make sure that the View code is purely about rendering UI.  Application and data retrieval logic should only be written inside Controller classes.  Controller classes can then choose to pass on the necessary data objects needed to render a view when they call their RenderView method.  For example, below in the Categories action method of our ProductsController class we are passing a List collection of Category objects to the Categories view:

MVC View Pages by default derive from the System.Web.Mvc.ViewPage base class, which provides a number of MVC specific helper methods and properties that we can use in constructing our UI.  One of these ViewPage properties is named "ViewData", and it provides access to the view-specific data objects that the Controller passed as arguments to the RenderView() method.

From within your View you can access the "ViewData" in either a late-bound or strongly-typed way.  If your View derives from ViewPage, the ViewData property will be typed as a late-bound dictionary.  If your View derives from the generics based ViewPage<T> - where T indicates the data object type of the ViewData the Controller is passing to the View - then the ViewData property will be strongly typed to match the same type that your Controller passed in.

For example, my Categories View code-behind class below is deriving from ViewPage<T> - where I am indicating that T is a List of Category objects:

This means that I get full type-safety, intellisense, and compile-time checking within my View code when working against the ProductsController.Categories() supplied List<Category> ViewData:

Rendering our Categories View:

If you remember from the screenshots at the very beginning of this post, we want to display a list of the product categories within our Categories view:

I can write this HTML UI generation code in one of two ways within my Categories View implementation: 1) Using Inline Code within the .aspx file, or 2) Using Server Controls within the .aspx file and Databinding from my Code Behind

Rendering Approach 1: Using Inline Code

ASP.NET Pages, User Controls and Master Pages today support <% %> and <%= %> syntax to embed rendering code within html markup.  We could use this technique within our Categories View to easily write a foreach loop that generates a bulleted HTML category list:

VS 2008 provides full code intellisense within the source editor for both VB and C#.  This means we'll get intellisense against our Category model objects passed to the View:

VS 2008 also provides full debugger support for inline code as well (allowing us to set breakpoints and dynamically inspect anything in the View with the debugger):

Rendering Approach 2: Using Server Side Controls

 

ASP.NET Pages, User Controls and Master Pages also support the ability to use declarative server controls to encapsulate HTML UI generation.  Instead of using inline code like above, we could use the new <asp:listview> control in .NET 3.5 to generate our bulleted list UI instead:

Notice above how the ListView control encapsulates both rendering a list of values, as well as handles the scenario where no items are in the list (the <EmptyDataTemplate> saves us from having to write an if/else statement in the markup).  We could then databind our list of category objects to the listview control using code-behind code like below:

Important: In a MVC world we only want to put rendering logic in our View's code-behind class (and not any application or data logic).  Notice above how the only logic we have is to assign the strongly typed ViewData collection of Category objects to the ListView control.   Our ProductsController Controller class is the one that actually retrieves the list of Categories from the database - not the View. 

This ListView server-control version of our View template will then generate the exact same HTML as our in-line code version.  Because we don't have a <form runat="server"> control on the page, no viewstate, ID values or other markup will be emitted.  Only pure CSS friendly HTML:

 

Html.ActionLink Method

One of the things you might have noticed in both the inline-code and the server-control versions of the View code snippets above are calls to an Html.ActionLink method:

The Html object is a helper property on the ViewPage base class, and the ActionLink method is a helper on it that makes it easy to dynamically generate HTML hyperlinks that link back to action methods on Controllers. If you look at the HTML output picture in the section above, you can see some example HTML output generated by this method:

<a href="http://weblogs.asp.net/Products/List/Beverages">Beverages</a>

The signature of the Html.ActionLink helper method I am using looks like this:

string ActionLink(string text, object values);

The first argument represents the inner content of the hyperlink to render (for example: <a>text goes here</a>).  The second argument is an anonymous object that represents a sequence of values to use to help generate the actual URL (you can think of this as a cleaner way to generate dictionaries).  I will go into more detail on how exactly this works in a future blog post that covers the URL routing engine.  The short summary, though, is that you can use the URL routing system both to process incoming URLs, as well as to generate URLs that you can emit in outgoing HTML.  If we have a routing rule like this:

/<controller>/<action>/<category>

And then write this code within a ProductController's Category View:

<%= Html.ActionLink("Click Me to See Beverages", new { action="List", category="Beverages" } %>

The ActionLink method will use the URL mapping rules of your application to swap in your parameters and generate this output:

<a href="http://weblogs.asp.net/Products/List/Beverages">Click Me to See Beverages</a>

This makes it easy within your application to generate URLs and AJAX callbacks to your Controllers.  It also means you can update your URL routing rules in one place and have the code throughout your application automatically pick up the changes for both incoming URL processing and outgoing URL generation.

Important Note: To help enforce testability, the MVC framework today does not support postback events directly to server controls within your Views.  Instead, ASP.NET MVC applications generate hyperlink and AJAX callbacks to Controller actions - and then use Views (and any server controls within them) solely to render output.  This helps ensure that your View logic stays minimal and solely focused on rendering, and that you can easily unit test your Controller classes and verify all Application and Data Logic behavior independent of your Views.  I'll blog more about this in the future.

Summary

This first blog post is a pretty long one, but hopefully helps provide a reasonably broad look at how all the different components of the new ASP.NET MVC Framework fit together, and how you can build a common real world scenario with it.  The first public preview of the ASP.NET MVC bits will be available in a few weeks, and you'll be able to use them to do all of the steps I outlined above.

While many of the concepts inherent to MVC (in particular the idea of separation of concerns) are probably new to a lot of people reading this, hopefully this blog post has also show how the ASP.NET MVC implementation we've been working on fits pretty cleanly into the existing ASP.NET, .NET, and Visual Studio feature-set.  You can use .ASPX, .ASCX and .MASTER files and ASP.NET AJAX to create your ASP.NET MVC Views.  Non-UI features in ASP.NET today like Forms Authentication, Windows Authentication, Membership, Roles, Url Authorization, Caching, Session State, Profiles, Health Monitoring, Configuration, Compilation, Localization, and HttpModules/HttpHandlers all fully support the MVC model.

If you don't like the MVC model or don't find it natural to your style of development, you definitely don't have to use it.  It is a totally optional offering - and does not replace the existing WebForms Page Controller model.  Both WebForms and MVC will be fully supported and enhanced going forward.  You can even build a single application and have parts of it written using WebForms and parts written using an MVC approach if you want.

If you do like what you've seen from the above MVC post (or are intrigued and want to learn more), keep an eye on my blog over the weeks ahead.  I'll be covering more MVC concepts and use them to build out our e-commerce application to show more features of it.

Hope this helps,

Scott

Published Tuesday, November 13, 2007 3:45 AM by ScottGu

Comments

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:13 AM by TimothyP

I'm looking forward to the upcoming articles!

Thank you :-)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:17 AM by Rocky Moore

How will Ajax and data entry enter into this model (as Ajax has taken a great hold on data entry nowadays)?  That is, those that require postbacks, not to mention all the third part libraries that currently use the postback methods.  Is there any way to use them under this model?

Thanks.  Saw you video a couple weeks ago abou MVC, was pretty good!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:20 AM by Peter St Angelo

Yet again -another awesome post.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:24 AM by Mohamed

Hi Scott,

This is amazing, would it be possible for you to demonstrate this part in a screencast or maybe next part?

Or something like create a blog in 15 minutes?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:26 AM by Doga Oztuzun

Hey G! It was what i was waiting to see ! I can't wait to mess up with it.

I use CastleProject and I didn't like using Ajax so I wonder how to use ASP.NET Ajax feauters ? I was trying to create a helper class to use ASP.NET ajax in castleProject. Will you do it like HtmlHelper ?

Thank you !

Regards.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:34 AM by Mohamed

Hello Scott,

Have you and the team any plans of including something like scaffolding? where by pointing at a database table clean basic code would be generated for listing,viewing,adding,editing,deleting etc.?

This would be a great kick start for beginners like me.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:44 AM by PieterD

Wow, now that is a posting! And this is only part 1? ;-)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:45 AM by John

Hi Scott,

Thanks for the post. Since it is early days for this project and SL 1.1 is still in Alpha, are there any plans to allow us to use this MVC model for SL applications?

Thanks,

John

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:48 AM by Dirk

Same here, I love the "Part 1" part of the title (although I'll also be looking for the words "release date" ;-))

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:49 AM by Dillorscroft

Really excited as to where this is heading for ASP.NET

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:49 AM by Michael A Jensen

Scott,

This is a fantastic addition to the ASP.NET arena. I am looking forward to the future blogs as well as implementing the MVC methodology in production ASP.NET apps once VS2008 is released.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:53 AM by Anthony

Hi Scott,

Thanks for your insightfull posts. I want to follow this demo on my own computer, but I wonder where I can this ASP.NET MVC project template.

keep up the good work,

Anthony

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:00 AM by Martin H. Normark

I like the level of abstraction and seperation, which is something I've always done in the past by having 3 projects inside Visual Studio. One for data access, one for business logic and a website project for UI.

What MVC provides for me, seems to be a cleaner way of calling corresponding methods inside of those layers, and taking care of all the URL rewriting, parameter 'loading' and so forth.

But the fact that I sometimes need to use the same business logic and data access from other apps that websites, makes me think that I would not benefit that much from the MVC. I would end up with a lot of skinny-methods, but on the other hand it would be easy to use the same website with another application logic without rewriting the aspx codebehind files.

Looking forward to play with it myself, and see how it all fits in...

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:00 AM by ajaxus

Wow! Scott, thanks for the long post.

Cant wait for more info on these MVC concepts.

Cheers

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:09 AM by Bill Pierce

Can I only pass one object to the View via RenderView or is there a mechanism to pass multiple objects/value types?  I'm guessing the convention is to lead me towards an 'interface per view' contract that specifies all data that will be made available?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:11 AM by daniel

Cool intro Scott. I cannot wait to get first-hand experience

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:15 AM by Daniel

Where or when can I download the CTP?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:16 AM by David Ing

Scott - This looks very promising indeed, and for the first time in a while, makes the Microsoft ASP.NET story much more appealing to lots of us. Good job in getting it back on the rails... <ducks>

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:24 AM by fathinker

It's great!

And I wonder if the source code of this sample application is available.

Thanks a lot.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:24 AM by Bruno

Awesome!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:25 AM by Matteo Casati

I love this guy!!!

Waiting for the next episode, thanks Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:33 AM by Sergey

Awesome article! Thank you, Scott. I've kicked you :)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:34 AM by Long

So cool !!!! I have learned so much from your blog. Thank you so much and keep posting plz.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:36 AM by Stuart Ballard

This all looks really cool!

I have one question: What was the reasoning behind having Html.ActionLink as opposed to a more standard ASP.NET type approach of an <asp:ActionLink runat="server".../> control? Using methods that generate strings of HTML seems like a step back from the server control architecture that makes ASP.NET so cool in the first place.

Of course it would be trivial to write an ActionLink server control that calls Html.ActionLink in its Render method. Have you considered including something like this?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:38 AM by Jonathan

Hey Scott,

Great article, can't wait to try it out. On a seperate note, any hint on when VS2008 will rtm?

Jonathan

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:39 AM by Mohammed Hossam

It is really similar to web client software factory WCSF, however from my experience with WCSF it turns out to be more overhead, may be because of the workflow, I hope this one is better and really makes our life easier

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:47 AM by Neil Bostrom

Fantastic post! So excited about getting my hands on the framework!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:48 AM by Rob

While you are talking about mocking objects for TDD, would you consider including how to mock out any orm being used.  Thanks

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:48 AM by brandyr

Can´t wait until the bits come out. Thanks for this overview Scott.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:56 AM by Ben Hayat

Hi Scott;

I'm sure you guys have spent a lot of work into this technology and it will take a good amount of time for us to become good at. My question is, do you think this kind of technology will make it's way to the Silverlight platform, so we both can benefit from the invested time and energy?

Thanks!

..Ben

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:56 AM by Steve

Since it adds a testing project, does this require Team System?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:56 AM by Mike

Awesome, thanks for this post! I was really looking forward to some more information on this project. To me, besides LINQ, it's the one thing I'm looking forward to most.

I have some questions that I hope you can answer:

1. Only Web Application model will be supported, not Web Site?

2. Is it also possible to have this URL mapped: /Products/Beverages/3 instead of /Products/Beverages?page=3 or does it _need_ the parameter name?

Also, some ideas and general remarks:

1. I'd love to see more helper methods for use in the views, I like how Ruby on Rails has many shortcuts for creating forms and formfields etc.

2. Migrations! Not a part of MVC but from my experience with Ruby on Rails I would love to see support for this somewhere, anywhere! It would fit perfectly with the more agile way of developing that is possible with ASP.NET MVC.

Again, thanks for this post, I can't wait for the first release!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:01 AM by Andy

Feature request - please please include a comparable feature to the Castle MonoRail SmartDispatcherController that automatically binds to Post variables submitted by form elements such as <input type="text" name="product[0].id" /> and <input type="text" name="product[1].name" />. Or is this sort of functionality what you see the current frameworks providing on top of Microsoft MVC?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:03 AM by Mark Lennox

Brillian article - it makes it very simple to understand!

Well done for all the hard work on the MVC implementation - looks like it is paying off! I'm first in line to get a copy of VS2008 and end my love/hate relationship with PageControllers :)

Thanks Scott!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:08 AM by Timo

What about Web Parts, are they supported ? Is it possible to develop Web Parts by using MVC ?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:10 AM by garygwang

Hi Scott,

Where I can download source code for this post?

Thanks,

Gary

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:11 AM by Scott S.

Thanks Scott.  I'm really excited to see this coming to ASP.NET.

What would happen in your products detail example when the user changes the product id in the url to something that isn't an integer such as "/Products/Detail/ABC"?  Will an exception be thrown since the ProductsController.Detail method is expecting an int?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:13 AM by vkl

Is it possible to test drive view in isolation, i.e. render it without full ASP.NET pipeline? It's necessary thing when using TDD for web development.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:13 AM by Vijay Santhanam

Awesome! Can't wait for the CTP!

How do you put the List page parameter into the core URL like you did with the category string? I guess I'm asking where you can define more  comprehensive routing rules.

Can you map a nullable type to a url segment? like /Products/List/CatName/23 and can you leave it blank like this /Products/List/CatName/?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:17 AM by Catto

Hey Now Scott,

Great content.

Thanks for the info,

Catto

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:21 AM by Rachit

I have been waiting for this for a long time. This will change the way we do ASP.Neting currently and will force others (adopters of MVC) to learn Generics for sure. All goodies! :)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:25 AM by Mike Hadlow

I'm also very keen to get my hands on the CTP. Scott, you mention, using Inversion of Control containers with the MVC framework. I'd be very interested in seeing a blog post on this subject. Also, will there be a sample application (with tests and IoC) available alonside the CTP?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:27 AM by Daniel

Very cool!  One thing I'd like to see guidance on is developing MVC apps with multiple UIs.  You say here that it's best to put your models and controllers in the web app, but say we want a Winforms, WPF, Silverlight, and Web UI all doing similar things. Or a Mobile Web UI and Desktop Web UI... Would these still each need their own Models and Controllers, or does it make sense to have one library that they all share?  If so, how is that supported?  I'm still new to MVC, so if I'm missing something conceptually here, tell me!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:33 AM by findleyd

This is great stuff. I can't wait to get my hands on it.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:34 AM by Bryan Sampica

Excellent Article - I'm really looking forward to this technology.  There has always been a disconnect between true enterprise development standards, and the typical website "page" model.  This exposes control over the process, and the end users experience.  Wonderful stuff!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:37 AM by efdee

Thank you for what I suspect will be among the most interesting .NET technologies to have been released in the last 2 years.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:53 AM by MattF

Great Post!

How would you go about populating several data driven dropdown lists as well as loading the page content without putting data access logic in the view?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:54 AM by Dragan Panjkov

Excellent, as always, Scott!

I was almost sure that something is cooking, because of suspicious silent on your blog in last few days. I knew that you were at ASP.NET Connections, but again I expected something like this.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:57 AM by Jeremy Sullivan

I really appreciate this material.  Do you support the MVC pattern over the MVP pattern?  Or are there just better scenarios for using each?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:57 AM by iDaniel

Right time, right place :-).

Looking forward to model, view and control.

cheers, idaniel

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:57 AM by Josh Stodola

Now THIS is the post I have been waiting for. Very nicely written, keep up the great work Scott!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:58 AM by prakash

Great explanation. Thanks Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:03 AM by David Mays

Thanks for this excellent writeup. You've done a good job of clarifying some important points about the new pattern. Anyone familiar with other popular MVC frameworks for .net can see the comparison quite cleanly here.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:05 AM by Tim Glenn

Great Post. Could I do this with the Front Controller pattern as well? (Without the mvc framework)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:05 AM by Max

This looks spectacular! Can you tell us when to expect a (beta) release? Can't wait to try it out myself! :-)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:06 AM by Roger Jennings

Scott,

Thanks for the very detailed tutorial and demo of the forthcoming MVC, especially for including the unit test details. Your post would make a super book chapter. I'll be interested to see how you mock LINQ to SQL's DataContext for testing (particularly shopping cart updates).

When can we expect a similar chapter with SubSonic as the DAL and scaffolding provider? (see oakleafblog.blogspot.com/.../subsonic-will-be-toolset-for-microsofts.html)

--rj

P.S. Posted at 3:45 AM? When do you sleep?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:09 AM by suhair

Naming a framework after a desugn pattern really drives the novices like me to panic and delays experimenting with it. Till now i was learning design patterns transparently using the .net framework. Is there any plan to change the asp.net mvc framework name to something tasty?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:14 AM by Alex Boesel

This writeup is masterful! Thanks for the monumental effort; it's extremely helpful!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:22 AM by Kapil

Great, I saw your earlier material about MVC but somehow could not find that when it is going to be available. Now it is clear that it is part of VS 2008

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:23 AM by gabriel

a very great article!

waiting to download the first CTP release :)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:23 AM by Kayj

This looks very promising. I will definitely try this out. Thanks!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:26 AM by gabriel

Thank you!!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:29 AM by Mathieu Paul Le Clerc

So the controller deals with the incomming request.  If I understand correclty, if I need to add a new "page" to my website I need to modify my controller and recompile the application?

Whould I end up with a single controller entry

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:30 AM by Matthew Vogt

Awesome.  Can't wait for the bits.  You talked about using an ASP.Net ListView control that is not inside a <form runat="server"> tag.  What if I want to use controls that must be inside such a tag?  

It doesn't look like this will work with the ASP.Net AJAX UpdatePanel control.  Will you be enhancing ASP.Net AJAX so that it integrates with the new MVC stuff?  I can see wanting to hit a url like /Products/Detail/3 and it return just the markup for the detail of that product (or maybe a JSON serialized Product object).  Will this be easy?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:31 AM by Carlo Folini

Hi Scott,

using server side controls I see a problem on handling the control naming convention with MVC framework (actually also with 'normal' asp.net coding).

If I have this code

<asp:TextBox ID="txtMyMessage" runat="server" />

in the calling page, I have to handle a name like

ctl00$ContentPlaceHolder1$txtMyMessage

How is it handled this situation in MVC?

Sorry if you planned to speculate on this in the following posts ;P

Great post!

Ciao

Carlo

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:36 AM by John R. Lewis

Awesome! I con't wait to start playing with this. One thing I'd like to see in a future post is, how are user controls that need a controller going to work? (For example, a data driven hierarchical menu that might live in the left pane of a web site.)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:36 AM by oVan

Very nice to see this, can't wait to get the bits also!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:36 AM by Justin

Thanks very much!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:36 AM by Sondre Bjellås

The ASP.NET MVC Framework is looking good, but I'm unsure how this will fit into custom MOSS 2007 development. Are you taking into consideration that we would like to use this framework for custom development ontop of MOSS? MOSS includes it's own URL rewriting/handling, I expect that to create problems for this new framework.

Are you considering support and implementation on MOSS - this is important for a lot of companies as more and more solutions are being development on that platform, and not from a scratch with an empty ASP.NET solution.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:41 AM by MikeBosch

This looks really great and I can't wait to start using it.  I had a few questions / comments on parts of the design.

1.  Wouldn't it make more sense to separate the models and controllers into their own class libraries?

2.  Will all the MVC features be available in VS 2005?

3.  How come URL rewriting is managed in the Global.asax?  Can this be managed from within a IHttpModule?

4.  How about making the action to execute a property of the [ControllerAction] attribute so it doesn't depend on the method name?  For example, [ControllerAction(Action="Detail")]

Looks great!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:45 AM by Matthew

How is input validation going to work?  Is there a place in the controller where you can register validation errors and then access them from the view similar to the ViewData property?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:45 AM by Jeffrey Zhao

Awesome!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:47 AM by justinw

thanks a lot

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:49 AM by Dominik

let me quote charles: outstanding! ;)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:50 AM by Jonathan Stegall

This is amazing. I'm really excited about the potential for having such control over the HTML generated by this framework. For the couple of years I've been working with ASP.NET, I've had respect for the struggle your team endures in trying to please the nitpicky designers like me who want total control over our HTML/CSS, and those who are more concerned about other things, and this appears to really resolve that tension. Thanks so much.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:03 AM by 木野狐

Great article. can't wait to use the MVC framework.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:07 AM by John R. Lewis

It would be great to see an example of a round trip from a read only list view page, to a form using whatever the framework uses for databinding, and back to the list view.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:10 AM by Ray

Great article!  I have 2 quick questions, one is that when you built the view, you have an approach Using Inline Code which got intellisense, do you recommend using this approach? Compare this to using the server control in this particular snippet of example, it looks shorter and cleaner than server control.  Second question is in which one of your LINQ tutorial did you discuss caching? Basically, when user browse your catalog the first time the Model got the data from DB and should cache it for a while on server, right?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:10 AM by Johan

I like where this is heading... But how will handheld devices handle ajax?

MVC should have been released years ago, this is how asp.net should have worked from the begining!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:19 AM by Rupak Ganguly

Excellent article! Where are the bits? Can't wait to start playing with it.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:22 AM by Hemal Patel

Thanks for detail MVC overview.

I have questions about state management. where we suppose to put state management logic using ViewState or Session. Will it be going in aspx page(view) or in Controller? if we use it in View, we are trying to control something and according to MVC pattern it should be in controller. If we put it in Controller, our view and controller both become tightly coupled with each other, which creates some contradiction.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:29 AM by Hemal Patel

Good article.

but..

Where should we put state management logic (ViewState or Session)? in controller or in view. if we put in view, we are meshing up with UI rules. if we put it in controllers, view and controllers become tightly coupled which would create contradiction. Should we go for separate State Management engine using ASP.NET state management technique and use it with controller or view?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:39 AM by phemals

Good article.

but..

Where should we put state management logic (ViewState or Session)? in controller or in view. if we put in view, we are meshing up with UI rules. if we put it in controllers, view and controllers become tightly coupled which would create contradiction. Should we go for separate State Management engine using ASP.NET state management technique and use it with controller or view?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:42 AM by Josh Zana

How does the MVC framework handle async data access?  What about server side redirects?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 12:05 PM by dpirs

And again, great new Framework!

Just a few questions:

- why didn't you use IEnumerable<T> (insted of List)

- I guess that the RenderView() method is using the reflection to find a proper view and pass the data to it. That means that  there is no strong typing (and no compiler error) if I modify the view (i.e. to use some NewCustomer data instead of Customer)? That would be an issue

- is 'TestViewEngine' part of the MVC Framework?

- you didn't mock the model (just the view). I would like to see how would you suggest mocking the (LINQ to SQL) model

P.S.

I hope that you didn't forget the n-tier LINQ to SQL blog. I'm still waiting for it :-)

dpirs

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 12:11 PM by Jeff Handley

I too am curious how validation is going to be handled--or field level security, or anything else where business rules need to have granular control over the presentation.

I posted a blog entry about an extended MVP Pattern I created that discusses how I used MVP to have fine-grained control over presentation from the Presenter (controller) while still respecting SoC and providing better testability.  I can't wait to get my hands on the bits for ASP.NET MVC to see how I can integrate the two patterns--you keep saying ASP.NET MVC is very pluggable, so I expect it to go well; I already have some ideas on it.

Thanks, this is great stuff!

Link to my post: <a href="blog.jeffhandley.com/.../a>

Jeff Handley

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 12:14 PM by overthetop

When and where can I download the bits for the MVC Framework? :)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 12:15 PM by zYm3N (Boguslaw)

At 2 p.m. (local time) I opened this article. There was one comment. Now we have 6 p.m. and there is many, many, many more comments. This says something.

Sice some time it's even not a question 'to be or not to be', this is 'how fast to be' :-)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 12:17 PM by Sean

This is pretty cool. I can't wait to start using it. I love how it sets you up for success straight from the "New > Project" starting point.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 12:37 PM by Igor

ASP.NET MVC looks absolutely brilliant!

Should we expect any difference in performnace between MVC and WebForms model?

Will VWD Express support MVC application templates?

Thanks!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 12:43 PM by Tim Jeanes

From being used to a 3-tier pattern of design, I'd have put the model in a separate project. In fact, I'd probably have put the controller in a separate project to the view too - the way you have it your Model needs references to System.Web, etc. in order to compile.

Can you say why you chose to have them in folders in one project rather than different projects for each of the three components of MVC?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 12:50 PM by Bob Archer

Scott,

Great stuff. A few comments I think 1 that someone mentioned...

1. View / Model / Controllers should be seperate projects! Or at least have a template for this. (I woudn't even want the template to create my "model" project because I may already have one, or be using LLBLGen, etc.) This would allow for 2:

2. There should be a way to plug this into a windows app too. The renderview stuff should be a factory that supports rendering a windows for also.

3. Seperating the Controllers/Model into class libs would allow for a WPF service layer that the controllers can interact with in order to distribute that app into physical tiers such as Web Server / App Server / Db Server.

Thanks... hope you guys take feeback to heart!

BOb

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 12:55 PM by Dave

This is, by far, the best post I've seen about the upcoming ASP.NET MVC framework.  I'm really excited to start using it now.

I'd be interested to see some examples of how Atlas will mesh with MVC (if at all).  Will the UpdatePanel be updated to somehow work with MVC?  Will page methods be replaced with some sort of "controller method" calls?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 1:09 PM by Steven Harman

Scott,

You talk about setting up the url mapping rules in the Global.asax (Application class)... and the same seems to be true of the samples I've seen from ScottHa and Phil "that's hott" Haack. So my question is, what happened to having these values configured via a standard .config file?

Can you shed a little light on why the decision was made to move the rules into the App Class? I'm sure there are good reasons... or maybe I shouldn't be asking such questions of such early, likely in-flux, bits. :)

Thanks!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 1:10 PM by The Other Steve

This is great.  But how do I get ahold of this?

What does this require to deploy?  IIS7?  Do I just drop something in /bin, or does the server need to be configured?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 1:11 PM by Mike

I think the views should not use aspx or ascx, how about "asvx" and pull out all the unnecessary control, usercontrol and page logic that is no longer needed.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 1:19 PM by Todd

Can't wait to use the framework, is there an ETA on the CTP?

Thanks!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 1:31 PM by Jorge Ercoli

Scott, nice job, but I've an important question that decide the use or not of this MVC AspNet fwk.

My applications in .NET works with "3 layers" pattern (business logic and data access in your own dll).  How can i use this wonderfull MVC with my Models (data access) and Controllers (B.Logic)??  Because if i'm not reuse this, i've repeat code in every layer; then this MVC is not DRY (don't repeat yourself) and the community don't accept.  

Others programmers put the point in this problem :

Martin H. Normark said "I like the level of abstraction and seperation, which is something I've always done in the past by having 3 projects inside Visual Studio. One for data access, one for business logic and a website project for UI." and

Mike Bosch said "1.  Wouldn't it make more sense to separate the models and controllers into their own class libraries?"

PLEASE Scott, give us a response for this important thing. Thanks in advance.

(Sorry for my latin-english...)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 1:40 PM by Shaneo

Hi Scott,

I'm very excited to see this once it is released. Until then, any chance of you coming to devteach in Vancouver (Nov 26 - 30) to give a demonstration similar to the one you did for alt.net?

-Shane

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 1:42 PM by wayde

Does anyone have a run down on the differences between Monorail and the ASP.NET MVC framework implementations?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 2:08 PM by Ben Hayat

Scott;

I love this product. It makes web programming a pleasure.

Now if we could have similar pattern for SL, I'll be in heaven. BTW, I had a dream last night that SL 1.1 beta will be out end of November...

..Ben

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 2:11 PM by kidsysco

I would like to see how to use submit buttons now rather than anchor tags, the new API for the anchor tags is awesome so there must be some new functionality on the other controls used for submitting pages to the server. What about normal controls that expose postbacks, how does the WebForms controller interact with the MV Controller in that situation?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 2:35 PM by Rohit

Thanks Scott!! Can't wait to use it. We are already planning new applications that we will develop using MVC. I think this is the right way to do things... “separation of concerns”, which is what makes the application maintainable and scalable. For a growing business this is absolutely a must!!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 2:35 PM by Edmund

How does a sitemap control work here?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 2:58 PM by Jesse

Hi Scott, nice post. Cant wait to get my hands on this.  I do have a few questions/concerns.

1. Can you dynamically adjust the master page/layout for a view at runtime?  If the view is responsible for setting the layout then it seems like there would be no way to adjust that at runtime without having the logic in the view.  Seems like the controller should have the power to adjust the layout/master page.

2. What does viewData become if I need to pass multiple data values to my view? Would I pass a dictionary instead?  If so then I think the framework should have better support for passing multiple values to the view?

3.  Will there be anyway to specify a different name for a controller or action that will still use the default routing rule? For example on my own custom asp.net mvc framework, I can specify this attribute property on a controller so that the routing engine can find it by a different name than the actual class name: [Controller(Name="about-us")].

Obviously I cant create a controller class called about-uscontroller, so the attribute property solves this problem for me if I want my url to be like this /about-us/contact-us.

I have the same kind of attribute property for an action [Action(Name="contact-us")].  That way I dont have to add routing rules and I get full flexibility in how I name my controllers and actions.

4.Will validation controls still work correctly with this framework?

5.Does an action have a default view or must you always call RenderView?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 3:03 PM by Ryan Cammer

I'm in the process of refactoring our mobile framework into a MVC, and I'd like to use the new MVC framework. However, our View is XSLT. Is the framework extensible, so that we can enable it to support XSLT?

Thanks!

Ryan

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 3:07 PM by Mark Wisecarver

Wow, well done Scott. ;-)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 3:16 PM by trio

Sorry, but I don't see the "halleluja" with this MVC hype. This will make web applications sooo much better because ...??? What? To me the MVC hype (yes, I stick with the term) is to the ASP.Net (or dev in general) what IPhone is in the telecom world. It's slick, it definitively got it's fan masses, but it brings nothing special to the table (oh, come on - i mentioned it was slick, but other than that???). To me it seems like everybody must drop whatever they are doing and catch the MVC train or forever be lost in their pitful caves - this is not true! ASP.Net lets you implement sane solutions as is, and be warned - MVC does not add cerebral cells to the developers brain!

Sorry, but this doesn't beat sliced bread!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 3:48 PM by evan

I can't wait to get to try this out.  The default RoR style url mapping (/[controller]/[action]/) can be changed?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 4:18 PM by Ray

Hi Scott, based on this URL mapping scheme, is the MVC approach good for large sites or it's intended for small to medium sites?  If for example I defined a url path mysite.com/.../5, then later on I changed my mind and want to call it http://mysite.com/prod/l/5, do I need to change my controller C# code and re-compile?  Thanks!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 4:56 PM by Joe

Hey Scott,

This is great, can't wait for part2 nor can I wait for the release. How does this compare to the Patterns & Practices MVC solution??

Thanks,

Joe

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:00 PM by Brian

How is this different then UIP (which is MVC)?

What does this provide that you couldn't do in WWF or UIP?

When would you use UIP vs WWF vs this new implementation of MVC?

When would you not use this?

What are the cons of using this?  I.E. what is this increased complexity gaining you?

For testing, how does this allow you to ensure HTML is generated correctly?  I.E, what makes it different than creating a web application and testing the code behind methods that are generic (that don't render anything) and using Web Unit Tests on the rest?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:10 PM by ScottGu

Hi Mohammed,

>>>>> This is amazing, would it be possible for you to demonstrate this part in a screencast or maybe next part?  Or something like create a blog in 15 minutes?

Yes - we'll be publishing some screen-casts like we do for other ASP.NET technogies on www.asp.net in the future.  My blog post above only scratched the surface of some of the MVC features - you can obviously do a lot more with it.

Stay tuned for more details,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:11 PM by ScottGu

Hi Mohamed,

>>>>>>>> Have you and the team any plans of including something like scaffolding? where by pointing at a database table clean basic code would be generated for listing,viewing,adding,editing,deleting etc.?  This would be a great kick start for beginners like me.

Yes, the ASP.NET MVC framework will have built-in support for scaffolding.  I'll be blogging about this more in the future.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:12 PM by ScottGu

Hi John,

>>>>>>>> Thanks for the post. Since it is early days for this project and SL 1.1 is still in Alpha, are there any plans to allow us to use this MVC model for SL applications?

Yes, this is something we are looking at.  Silverlight 1.1 will have rich binding support for UI which enables you to bind against model objects.  This provides a nice way that you can have a controller work against model data, and then have the UI automatically update when the model data changes.  I'll cover this more in a separate Silverlight tutorial series in the future.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:14 PM by ScottGu

Hi Bill,

>>>>>>> Can I only pass one object to the View via RenderView or is there a mechanism to pass multiple objects/value types?  I'm guessing the convention is to lead me towards an 'interface per view' contract that specifies all data that will be made available?

You can pass any container object you want to the RenderView method.  This container could contain multiple sub-properties.  For example I could create a ProductsviewData object that encapsulates multiple values:

public class ProductsViewData

{

   public string         CategoryName { get; set; }

   public List<Category> Categories { get; set; }

}

and then pass this to RenderView to send multiple data results to the view.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:15 PM by ScottGu

Hi Daniel,

>>>>>>> Where or when can I download the CTP?

We'll have the first public CTP in a few weeks.  Not far off now.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:16 PM by ScottGu

Hi Stuart,

>>>>>> I have one question: What was the reasoning behind having Html.ActionLink as opposed to a more standard ASP.NET type approach of an <asp:ActionLink runat="server".../> control? Using methods that generate strings of HTML seems like a step back from the server control architecture that makes ASP.NET so cool in the first place.  Of course it would be trivial to write an ActionLink server control that calls Html.ActionLink in its Render method. Have you considered including something like this?

The first CTP only has the helper methods, but our plan is to ship server controls that correspond to them in the future as well (the server controls would be built on top of the methods).  That way you can use either approach.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:17 PM by ScottGu

Hi Jonathan,

>>>>>> Great article, can't wait to try it out. On a seperate note, any hint on when VS2008 will rtm?

VS 2008 will RTM very, very soon.  We've publically said it will be by the end of November - stay tuned. :-)

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:20 PM by ScottGu

Ho Rob,

>>>>>> While you are talking about mocking objects for TDD, would you consider including how to mock out any orm being used.  

One approach you can use would be to create a INorthwindRespository interface that you have NorthwindDataContext implement.  This would have the three retrieval methods I created in the partial class.  You'd then use this interface reference within your ProductsController when retrieving data, and probably set it via dependency injection when the controller is created.

The benefit would be that you could then mock out implementations of this INorthwindRepository interface in your unit tests - which would allow you to test the ProductsController without having to actually talk to a database.

I'll try and show a sample of this in the future.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:21 PM by ScottGu

Hi Steve,

>>>>>> Since it adds a testing project, does this require Team System?

No - the good news is that Test Projects with VS 2008 are now supported with the VS 2008 Professional edition - and no longer require team system.

You will also be able to use the VS Express and Standard edition products as well, and then use NUnit, MBUnit or some other testing framework with them (we'll ship project templates for these as well).

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:25 PM by ScottGu

Hi Mike,

>>>>>>> I have some questions that I hope you can answer:

>>>>>>> 1. Only Web Application model will be supported, not Web Site?

We'll support both web application projects and web-site projects.  In general you'll find that if you are using unit testing that web application projects work better (since you can load the project assembly and directly test it), but the runtime behavior will work with both.

>>>>>>>>> 2. Is it also possible to have this URL mapped: /Products/Beverages/3 instead of /Products/Beverages?page=3 or does it _need_ the parameter name?

Yes - this is totally supported. Just set a route rule for /Products/Beverages with the format /Products/<Category>/<Page> - they'll then get passed in as arguments to the action method:

public List(string category, int? page) {

}

>>>>>>> Also, some ideas and general remarks:

>>>>>>> 1. I'd love to see more helper methods for use in the views, I like how Ruby on Rails has many shortcuts for creating forms and formfields etc.

Yes - we'll have a rich library of helper methods for the views.  They'll include helpers to create all the standard forms, formfields and more.

>>>>>>>> 2. Migrations! Not a part of MVC but from my experience with Ruby on Rails I would love to see support for this somewhere, anywhere! It would fit perfectly with the more agile way of developing that is possible with ASP.NET MVC.

Rob Conery is building .NET Migrations support as part of the SubSonic project, and recently joined Microsoft.  You'll be able to use this with ASP.NET MVC.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:26 PM by ScottGu

Hi Andy,

>>>>>> Feature request - please please include a comparable feature to the Castle MonoRail SmartDispatcherController that automatically binds to Post variables submitted by form elements such as <input type="text" name="product[0].id" /> and <input type="text" name="product[1].name" />. Or is this sort of functionality what you see the current frameworks providing on top of Microsoft MVC?

Yes - we'll be supporting this feature with the final release of ASP.NET MVC as well.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:51 PM by ScottGu

Hi Timo,

>>>>>>> What about Web Parts, are they supported ? Is it possible to develop Web Parts by using MVC ?

We don't support web parts within MVC views today.  You can have a WebPart hosted inside of a standard ASP.NET WebForm that does an AJAX call to a MVC view to refresh its HTML content, and so you can integrate MVC with WebParts.  But you can't host a webpartzone directly inside of a MVC View.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:52 PM by ScottGu

Hi Gary,

>>>>>>> Where I can download source code for this post?

My plan is to get a little further along with a few posts, and then post the sample code for the e-commerce site once we ship the first public preview of the MVC bits.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:57 PM by ScottGu

Hi Scott S,

>>>>>>> What would happen in your products detail example when the user changes the product id in the url to something that isn't an integer such as "/Products/Detail/ABC"?  Will an exception be thrown since the ProductsController.Detail method is expecting an int?

You can handle this scenario in a couple of ways.  

1) One would be to add a condition to your URL routing registration to route the URL differently depending on whether the parameter is a string or integer (the URL route system is flexible enough to handle these differently - and even map them to different controllers/actions depending on the value).

2) Alternatively you could mark the parameter to be nullable on your action method.  If you try to assign "ABC" to a nullable integer, the value passed in would be null.  You could then add your own logic to decide what to-do then.

3) Alternatively if you have your action method just marks the variable to be an int, then the framework will raise an error if the user tries to pass in "ABC" as the value.  You can then choose to handle this error and display whatever error you want to the end user.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 5:59 PM by ScottGu

Hi Vkl,

>>>>>>> Is it possible to test drive view in isolation, i.e. render it without full ASP.NET pipeline? It's necessary thing when using TDD for web development.

For the first public preview CTP you need to host ASP.NET to unit test views.  You can still isolate them from your Controllers - but it does require an ASP.NET app domain to test them.  We are looking at whether we can enable isolated unit testing of the views independent of the ASP.NET app domain in the future though.  

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 6:01 PM by ScottGu

Hi Vijay,

>>>>>>> How do you put the List page parameter into the core URL like you did with the category string? I guess I'm asking where you can define more  comprehensive routing rules.

Yes - this is totally supported. Just set a route rule for /Products/List/Beverages/3 with the format /Products/List/<Category>/<Page> - the category and page index will then get passed in as arguments to the action method:

[ControllerAction]

public List(string category, int? page) {

}

>>>>>>>> Can you map a nullable type to a url segment? like /Products/List/CatName/23 and can you leave it blank like this /Products/List/CatName/?

Yes - this is totally supported.  You can also optionally define "default" values in the route rules to use in the case that the value is null.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 6:03 PM by ScottGu

Hi Mike,

>>>>>>> I'm also very keen to get my hands on the CTP. Scott, you mention, using Inversion of Control containers with the MVC framework. I'd be very interested in seeing a blog post on this subject. Also, will there be a sample application (with tests and IoC) available alonside the CTP?

We have a IControllerFactory extensiblity point that owns creating Controller instances.  You can use this with a IOC container to customize any Controller instance prior to it being called by the MVC framework.  We'll be posting samples of how to use this with ObjectBuilder and Windsor with the first CTP I believe.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 6:11 PM by ScottGu

Hi Daniel,

>>>>>>> Very cool!  One thing I'd like to see guidance on is developing MVC apps with multiple UIs.  You say here that it's best to put your models and controllers in the web app, but say we want a Winforms, WPF, Silverlight, and Web UI all doing similar things. Or a Mobile Web UI and Desktop Web UI... Would these still each need their own Models and Controllers, or does it make sense to have one library that they all share?  If so, how is that supported?  I'm still new to MVC, so if I'm missing something conceptually here, tell me!

That is a good question, and one we'll need to provide more guidance on in the future.  In general it is often hard to share the same controller across both client and web UI, since the way you do data access and the stateful/stateless boundaries end up being very different.  It is possible - but some guidance here would ceretainly be useful.  My team should hopefully be coming out with this in the future.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 6:12 PM by ScottGu

Hi Matt,

>>>>>> How would you go about populating several data driven dropdown lists as well as loading the page content without putting data access logic in the view?

In general what you'd do is to to have the controller retrieve the data for the drop-downlists, and then pass them to the view.  The View would then either databind them to controls or call an Html.Select() UI helper method to display them.

I'll cover this more in a future blog post.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 6:16 PM by ScottGu

Hi Jeremy,

>>>>>> I really appreciate this material.  Do you support the MVC pattern over the MVP pattern?  Or are there just better scenarios for using each?

The above approach I showed uses a MVC based pattern - where the Controller and the View tend to be more separate and more loosly coupled.  In a MVP pattern you typically drive the UI via interfaces.  This works well with a controls model, and makes a lot of sense with both WinForms and WebForms where you are using a postback model.

Both MVC and MVP are perfectly fine approaches to use.  We are coming out with the MVC approach for ASP.NET partly because we've seen more demand for it recently for web scenarios.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 6:16 PM by ScottGu

Hi Max,

>>>>>> This looks spectacular! Can you tell us when to expect a (beta) release? Can't wait to try it out myself! :-)

We'll have the first public preview out in a few short weeks.  You will be able to start building (and deploying) apps using the ASP.NET MVC framework then.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 6:21 PM by ScottGu

Hi Roger,

>>>>>> Thanks for the very detailed tutorial and demo of the forthcoming MVC, especially for including the unit test details. Your post would make a super book chapter. I'll be interested to see how you mock LINQ to SQL's DataContext for testing (particularly shopping cart updates).

I'll add onto my list of things to cover in a future blog post.  One approach you can use would be to create a INorthwindRespository interface that you have NorthwindDataContext implement.  This would have the three retrieval methods I created in the partial class.  You'd then use this interface reference within your ProductsController when retrieving data, and probably set it via dependency injection when the controller is created.

The benefit would be that you could then mock out implementations of this INorthwindRepository interface in your unit tests - which would allow you to test the ProductsController without having to actually talk to a database.

>>>>>>> When can we expect a similar chapter with SubSonic as the DAL and scaffolding provider? (see oakleafblog.blogspot.com/.../subsonic-will-be-toolset-for-microsofts.html)

I'll be covering scaffolding in a future blog post.  LINQ to SQL scaffolding is built-in with ASP.NET MVC and doesn't require SubSonic.  SubSonic will also obviously be adding new ASP.NET MVC features as well.

>>>>>>> P.S. Posted at 3:45 AM? When do you sleep?

4am-7am was my sleep period today. :-)

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 6:45 PM by Eric

Seriously Scott... Get some sleep!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 6:51 PM by Jeff Handley

Amazing stuff Scott.  I think you hit on a good point that relates to some of my validation questions too.  I have used MVP to create my extended MVP pattern with validation built in--it's MVP, not MVC.  I am still curious though to see how you guys will suggest implementing validation or other UI "business rules" with this framework.

>>>>>>> P.S. Posted at 3:45 AM? When do you sleep?

>>>> 4am-7am was my sleep period today. :-)

Impressive--and thanks!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 6:57 PM by Ben Hayat

Scott;

Does this mean that with MVC, we no longer use LinqDatasource in the View section?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:23 PM by Kevin Dente

Great stuff - looking forward to the bits with great anticipation.

Any word on when there will be a Go-live license available?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 7:29 PM by Dragan Panjkov

Perhaps I missed it somehow, but can you explain on which version of asp.net will this ctp run?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:34 PM by Steve Gentile

Excellent information on the MS MVC Scott.  Fantastic work so far - I'm quite impressed.

I love the testing support, the 'familiarity' aspects as well.

Great job - I look forward to some seeing some bits soon  :)

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 8:37 PM by Steve Gentile

One question:  Any comments on how AJAX support will be implemented with this model?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:17 PM by David

Hi Scott,

>>>>>>> 4am-7am was my sleep period today. :-)

How on earth do you do that??!!? I struggle with 6 hours sleep. Maybe during your next 21 hour day you could do a tips/tricks blog post on how to be able to function on almost no sleep :)

Thanks for all the good work,

David

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:34 PM by ChadT

Scott, this is amazing timing! The URL mapping features inherit in an MVC application are PERFECT for the upgrade to ASP.NET 3.5 I'm making to my spelldamage.com site. Hosting question, will hosts simply need to support the ASP.NET 3.5 framework to allow us to run ASP.NET MVC applications?

Also, I'm new to MVC type development. My understanding is there is no longer a postback that occurs. How do you implement button clicks, etc... in the MVC framework?

Thanks Scott, I can't wait to port my development to this framework.

Chad

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 9:40 PM by peter foley

Great stuff.

This form of MVC is much closer to what I think of as MVP than classic MVC because the Model does not talk to the View at all. As this is the main benefit of MVP (as it allows testability easily) what extra would be gained by going "full" MVP? Or have I misunderstood?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:33 PM by ScottGu

Hi Mattieu,

>>>>>>> So the controller deals with the incomming request.  If I understand correclty, if I need to add a new "page" to my website I need to modify my controller and recompile the application?

Correct - Controllers are the entrypoints into the application.  So if you want to expose a new URL you'd want to add a new Controller to the application.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:35 PM by ScottGu

Hi Matthew,

>>>>>>> It doesn't look like this will work with the ASP.Net AJAX UpdatePanel control.  Will you be enhancing ASP.Net AJAX so that it integrates with the new MVC stuff?  I can see wanting to hit a url like /Products/Detail/3 and it return just the markup for the detail of that product (or maybe a JSON serialized Product object).  Will this be easy?

The <asp:updatepanel> control relies on the <form runat="server"> control being on a page - which isn't supported with MVC Views.

What we will have, though, is an easy API that enables you to call back to Controller actions on a server and then inject the response back to refresh a portion of a page.  This is a little more work than an UpdatePanel - but it also does give you more control over how exactly the AJAX update takes place.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:42 PM by ScottGu

Hi Carlo,

>>>>>> using server side controls I see a problem on handling the control naming convention with MVC framework (actually also with 'normal' asp.net coding).  If I have this code

>>>>>> <asp:TextBox ID="txtMyMessage" runat="server" />

>>>>>> in the calling page, I have to handle a name like

>>>>>> ctl00$ContentPlaceHolder1$txtMyMessage

I'll cover using form controls calling back to the server in future posts.  With the MVC pattern you'll typically end up declaring your own <form> elements around elements in a View, and work closer to the HTML/HTTP metal.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:45 PM by ScottGu

Hi John,

>>>>>>>> Awesome! I con't wait to start playing with this. One thing I'd like to see in a future post is, how are user controls that need a controller going to work? (For example, a data driven hierarchical menu that might live in the left pane of a web site.)

You'll be able to have user control views call back to Controllers on the server and incrementally update regions of a page this way.  We'll cover this in the future in upcoming blog posts.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:47 PM by ScottGu

Hi Sondre,

>>>>> The ASP.NET MVC Framework is looking good, but I'm unsure how this will fit into custom MOSS 2007 development. Are you taking into consideration that we would like to use this framework for custom development ontop of MOSS? MOSS includes it's own URL rewriting/handling, I expect that to create problems for this new framework.  Are you considering support and implementation on MOSS - this is important for a lot of companies as more and more solutions are being development on that platform, and not from a scratch with an empty ASP.NET solution.

SharePoint support will definitely be something we look at in the future.  We don't have a plan we are ready to talk about yet with it right now - but it is something we'll work on.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:51 PM by ScottGu

Hi MikeBosch,

>>>>>> 1.  Wouldn't it make more sense to separate the models and controllers into their own class libraries?

Yes, this is ceretainly something I'd recommend for larger projects.

>>>>>> 2.  Will all the MVC features be available in VS 2005?

Right now the ASP.NET MVC features work on top of .NET 3.5 - so you'll want to use VS 2008 to target them.

>>>>>>>> 3.  How come URL rewriting is managed in the Global.asax?  Can this be managed from within a IHttpModule?

I'll cover the URL routing infrastructure in a future blog post.  In general you register rules at application startup, and typically use the Application_Start event to register them.  The MVC framework then handles all of the logic necessary to process them.

>>>>>>>> 4.  How about making the action to execute a property of the [ControllerAction] attribute so it doesn't depend on the method name?  For example, [ControllerAction(Action="Detail")]

While the default routing rule uses the method name to execute the action, this isn't required.  I'll show how you can customize the routing rules so that the method name doesn't have to match the URL name.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:53 PM by ScottGu

Hi John R. Lewis,

>>>>>>> It would be great to see an example of a round trip from a read only list view page, to a form using whatever the framework uses for databinding, and back to the list view.

I'll add this to the list to blog about.

Thanks!

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:54 PM by ScottGu

Hi Matthew,

>>>>>>>> How is input validation going to work?  Is there a place in the controller where you can register validation errors and then access them from the view similar to the ViewData property?

I'll cover some strategies for how you can handle errors within applications in future posts.

Thanks!

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:58 PM by ScottGu

Hi Ray,

>>>>>>> Great article!  I have 2 quick questions, one is that when you built the view, you have an approach Using Inline Code which got intellisense, do you recommend using this approach? Compare this to using the server control in this particular snippet of example, it looks shorter and cleaner than server control.  Second question is in which one of your LINQ tutorial did you discuss caching? Basically, when user browse your catalog the first time the Model got the data from DB and should cache it for a while on server, right?

I haven't covered caching with LINQ to SQL yet (so much to still blog! <g>)

Whether to use inline code or server controls in your views typically comes down to personal preferences.  Some people find inline code more natural, some prefer more of the code/content separation that server controls provides you.  In general I typically recommend that you use whichever feels best to you.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 10:59 PM by Troy Goode

Hi Scott,

I haven't seen any examples of routing information in a config file since your earlier ALT.NET presentation; all routing information is always shown in the Global.asax now. Are simple routing scenarios via a text config still part of the planned CTP release?

Troy

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:00 PM by ScottGu

Hi Hemal,

>>>>>>> I have questions about state management. where we suppose to put state management logic using ViewState or Session. Will it be going in aspx page(view) or in Controller? if we use it in View, we are trying to control something and according to MVC pattern it should be in controller. If we put it in Controller, our view and controller both become tightly coupled with each other, which creates some contradiction.

I'll cover the state management options provided by the MVC model in a future post.  There are a couple of options available (Session state is one - we also have a TempData object that you can use to temporarily store values across redirects).

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:02 PM by ScottGu

Hi Igor,

>>>>>>> Should we expect any difference in performnace between MVC and WebForms model?

No - in general you'll find both about the same in terms of performance.

>>>>>>> Will VWD Express support MVC application templates?

Yes - we'll support using the MVC option with VWD Express as well as Visual Studio.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:03 PM by ScottGu

Hi Tim,

>>>>>>> From being used to a 3-tier pattern of design, I'd have put the model in a separate project. In fact, I'd probably have put the controller in a separate project to the view too - the way you have it your Model needs references to System.Web, etc. in order to compile.

You can definitely put the models in a separate project as well.  For larger projects I'd definitely recommend splitting the application across more than one project.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:06 PM by ScottGu

Hi Dave,

>>>>>>> I'd be interested to see some examples of how Atlas will mesh with MVC (if at all).  Will the UpdatePanel be updated to somehow work with MVC?  Will page methods be replaced with some sort of "controller method" calls?

I'll be covering this in future blog posts.  We'll have a good ASP.NET AJAX integration story with the MVC model.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:08 PM by ScottGu

Hi Steven,

>>>>>>>> You talk about setting up the url mapping rules in the Global.asax (Application class)... and the same seems to be true of the samples I've seen from ScottHa and Phil "that's hott" Haack. So my question is, what happened to having these values configured via a standard .config file?

>>>>>>>> Can you shed a little light on why the decision was made to move the rules into the App Class? I'm sure there are good reasons... or maybe I shouldn't be asking such questions of such early, likely in-flux

In general it is sometimes easier to reflect routing rules via code than configuration (and you get compile-time checking with them).  Having said that, you ceretainly could load the routing rules from a config file if you preferred it that way.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:10 PM by ScottGu

Hi The Other Steve,

>>>>>>>> This is great.  But how do I get ahold of this?  What does this require to deploy?  IIS7?  Do I just drop something in /bin, or does the server need to be configured?

The first MVC CTP will be a separate install you can run on a machine. We'll then role it into a .NET Service Pack in the future.  It will work on both IIS7 as well as IIS5/6.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:12 PM by ScottGu

Hi Jorge,

>>>>>>>> My applications in .NET works with "3 layers" pattern (business logic and data access in your own dll).  How can i use this wonderfull MVC with my Models (data access) and Controllers (B.Logic)??  Because if i'm not reuse this, i've repeat code in every layer; then this MVC is not DRY (don't repeat yourself) and the community don't accept.  

There is no need to put your business and data logic in the same assembly as your controllers.  You can split them up across multiple class library projects if you prefer.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:12 PM by ScottGu

Hi Shaneo,

>>>>>>> I'm very excited to see this once it is released. Until then, any chance of you coming to devteach in Vancouver (Nov 26 - 30) to give a demonstration similar to the one you did for alt.net?

I wish I could, but unfortunately I won't be able to this year. :-(

Sorry!

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:15 PM by ScottGu

Hi kidsyco,

>>>>>>> I would like to see how to use submit buttons now rather than anchor tags, the new API for the anchor tags is awesome so there must be some new functionality on the other controls used for submitting pages to the server. What about normal controls that expose postbacks, how does the WebForms controller interact with the MV Controller in that situation?

You can also use Buttons to post back to the server.  I'll show how to-do this in future blog posts.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:17 PM by ScottGu

Hi Edmund,

>>>>>>> How does a sitemap control work here?

You can use the SiteMap API from both the Controller class and Views.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:20 PM by SeanG

Wow, ASP.NET on Rails!  Great!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:24 PM by ScottGu

Hi Jesse,

>>>>>>> 1. Can you dynamically adjust the master page/layout for a view at runtime?  If the view is responsible for setting the layout then it seems like there would be no way to adjust that at runtime without having the logic in the view.  Seems like the controller should have the power to adjust the layout/master page.

You can optionally configure a default master to use within your view (like you do today with .aspx pages).  Controllers can also programmatically change the master of a view when you call the RenderView method.

For example:

  RenderView("MyView", product, "MyMaster");

>>>>>>> 2. What does viewData become if I need to pass multiple data values to my view? Would I pass a dictionary instead?  If so then I think the framework should have better support for passing multiple values to the view?

You can either pass in a dictionary, or a class with multiple properties with sub-objects.

>>>>>>> 3.  Will there be anyway to specify a different name for a controller or action that will still use the default routing rule? For example on my own custom asp.net mvc framework, I can specify this attribute property on a controller so that the routing engine can find it by a different name than the actual class name: [Controller(Name="about-us")].  Obviously I cant create a controller class called about-uscontroller, so the attribute property solves this problem for me if I want my url to be like this /about-us/contact-us.  I have the same kind of attribute property for an action [Action(Name="contact-us")].  That way I dont have to add routing rules and I get full flexibility in how I name my controllers and actions.

You can either change the routing rules to accomplish this, or alternatively you can apply an attribute based filter to modify the URL mapping.  This gives you a lot of flexibility in terms of mapping the URLs however you want.

>>>>>>>> 4.Will validation controls still work correctly with this framework?

The existing <asp:validation> controls require postback support, so won't work within MVC views.  We will have validation helpers that you can use though that are MVC aware.

>>>>>>>>> 5.Does an action have a default view or must you always call RenderView?

Actions don't by default have default rendering semantics.  You can add this support to make it automatic, but by default no default rendering happens.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:24 PM by peter foley

Great stuff.

This form of MVC is much closer to what I think of as MVP than classic MVC because the Model does not talk to the View at all. As this is the main benefit of MVP (as it allows testability easily) what extra would be gained by going "full" MVP? Or have I misunderstood?

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:25 PM by ScottGu

Hi Evan,

>>>>>>>> I can't wait to get to try this out.  The default url mapping (/[controller]/[action]/) can be changed?

Yes - you can completely change the default rules however you want.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:25 PM by Vikram

Thanks for the post. Was very helpful

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:26 PM by ScottGu

Hi Ray,

>>>>>>> Hi Scott, based on this URL mapping scheme, is the MVC approach good for large sites or it's intended for small to medium sites?  If for example I defined a url path mysite.com/.../5, then later on I changed my mind and want to call it http://mysite.com/prod/l/5, do I need to change my controller C# code and re-compile?  Thanks!

Because URL routing rules are configured in one place (the route engine), you can make a change there and automatically have all controllers pick up the change.  

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:29 PM by ScottGu

Hi Ben,

>>>>>>> Does this mean that with MVC, we no longer use LinqDatasource in the View section?

While the LinqDataSource control will technically work in MVC Views, if you are using a MVC model you wouldn't want to place it there.  Instead you want to perform all of your data and application logic in the Controller layer - and then pass the needed data to the view.

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:30 PM by ScottGu

Hi Kevin Dente,

>>>>>>> Any word on when there will be a Go-live license available?

The first public MVC CTP will support deploying apps (we won't disallow this).

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:30 PM by ScottGu

Hi Dragon,

>>>>>>> Perhaps I missed it somehow, but can you explain on which version of asp.net will this ctp run?

The MVC framework builds on top of .NET 3.5

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:31 PM by ScottGu

Hi Steve,

>>>>>> One question:  Any comments on how AJAX support will be implemented with this model?

We'll cover this in more depth in future posts.  In general you'll be able to call back from a client to a Controller action and send back either data or HTML that you cna then use from JavaScript on the page.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:36 PM by ScottGu

Hi ChadT,

>>>>>>> Scott, this is amazing timing! The URL mapping features inherit in an MVC application are PERFECT for the upgrade to ASP.NET 3.5 I'm making to my spelldamage.com site. Hosting question, will hosts simply need to support the ASP.NET 3.5 framework to allow us to run ASP.NET MVC applications?

Your hoster will need to support .NET 3.5 for the MVC support.

>>>>>>> Also, I'm new to MVC type development. My understanding is there is no longer a postback that occurs. How do you implement button clicks, etc... in the MVC framework?

I'll cover this in upcoming posts.  In general you'll find that the MVC model has you working closer to the underlying HTTP/HTML protocols.  So to implement button posts you'd typically wrap your own <form> element on the page and set the action attribute to point to a controller action method.  

Hope this helps,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 13, 2007 11:37 PM by Chris

Awesome! We're in the process of migrating from a Java MVC web env to .NET...we can't wait to get our hands on this.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 12:01 AM by Steve

Discuss MVC with Microsoft and others in the community on the aspnet-mvc mailing list:

aspadvice.com/.../list.aspx

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 12:08 AM by Aaron Carlson

This is some good stuff.  This seems much easier to use then the stuff coming out of the P&P team, and just as powerful.

How would someone go about helping out on a project like this.  Either in their spare time or possibly full time ;)

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 12:23 AM by Bil Simser

"I'll blog more about this in the future." You get paid by the word right? Awesome post as I sit here salivating over the bits I don't have yet. Sigh.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 12:56 AM by QiangLi

Dear Scott,

Thanks for this post.I'm from china.My English is badly,but I like programming,like ASP.NET,like LINQ and so on.I am a teacher and teach asp.net(C#). I am using VS 2008 Beta2 now. How create a new ASP.NET MVC Web Application in VS 2008 beta2?

Thanks.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 1:54 AM by elixir

Hope you get all the performance tests going as wonderfully as well. If VS2008 is as fast as Eclipse that'd certainly do it good.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 1:58 AM by si

Thanks for another useful insight into ASP.NET MVC, very keen to check it out.

One minor comment, in your code examples, the documentation for properties and methods isn't using the standard approach, i.e. so you can have Sandcastle (or whatever) build the help for you, and have intellisense integration where appropriate.

I find GhostDoc to be a very useful addon for this.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 2:24 AM by ChadT

Thanks for the quick response Scott. Since I'm an MVC noob, I can't wait to see how data gets passed back to the controller for processing. For example, if I had a textbox and button control on the page that I intended to allow the visitor to enter some text into a DB with... how would the data get back from the view to the controller for processing? Can't possibly be by querystring... ;)

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 2:33 AM by Dragan Panjkov

It's Dragan, not Dragon, but this is OK. :) Thanks, again

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 3:19 AM by Mike

Thanks for answering all the questions!

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 3:38 AM by Hans

Scott,

You wrote above that ASP.NET MVC will run on IIS7 as well as IIS5/6. Then you wrote that "Your hoster will need to support .NET 3.5 for the MVC support.".

If .NET 3.x isn't supported on Windows 2000 how can IIS5 host MVC?

Thanks,

Hans

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 3:59 AM by peter foley

This looks great

One question. You say it is MVC but it looks more like MVP to me in that the Model does not talk to the View (which I believe is the bit that makes it testable). What extra does "full" MVP give?

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 4:00 AM by Mike

Great topic, especially with all the q&a going on.

One other thing I am wondering about is this: If your masterpage needs data based on application logic (or a user control for that matter), how can they get the data if the controller that is handling the request is specific to the view (ProductsController)? Can the masterpage trigger it's own controller somewhere along the way to get the data it needs?

Also, how do you feel about the enthusiasm around this framework? I understand it's really cool to make something that so many people want, but it also means that many people are not happy about webforms. Any regrets, that maybe it should have been this way from the beginning and you would have had more mindshare?

Thanks!

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 4:12 AM by Ben

Awesome post Scott, i truely can not wait to try this out! Keep it comming!

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 5:21 AM by Cristian Odea

Dear Scott,

While testability is a great thing, I believe one of the other advantages using a MVC framework is making the presentation code reusable. It seems this advantage is lost in this framework ( Asp.Net MVC ? )

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 8:04 AM by Peter

What does SKU mean?

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 8:23 AM by Hans

Hi Scott,

>>>>>>> You can use the SiteMap API from both the Controller class and Views.

How does the SiteMap API integrate with the new dynamic urls that comes with MVC? The Web.sitemap file is pretty static?

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 8:36 AM by Chuck

This looks really interesting...

I realize it's still early, but I'm interested in how the URL parsing logic validates input with respect to parsing types.

For example, if I get a request similar to /Products/Detail/somestring, where some string is not an int, I might return a 404 or a 400. The same applies to /Products/Detail?id=somestring.

How does the URL parsing logic handle this and how customizable is this?

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 8:39 AM by Dan

Scott,

Could you please list the things that we would miss in the MVC framework that we already have in webforms framework (like postback and validation)

Thanks

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 8:47 AM by Victor

I would like to ask if the MVC framework supports string token replacement template? So that even not a programmer can design/edit the template and plug it into the MVC framework directly?

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 9:07 AM by Rocky Moore

>>>

>>>>>> One question:  Any comments on how AJAX support will be implemented with this model?

We'll cover this in more depth in future posts.  In general you'll be able to call back from a client to a Controller action and send back either data or HTML that you cna then use from JavaScript on the page.

<<<<<<<<<

Kind of confused here.  Wouldn't sending HTML from the control for AJAX be a bit messy since it would relate more to the view?  Am I missing something?

You also mentioned about State in a tempData, would this in some way preserve the state of data controls on the page during the cycle of validating it and posting errors, so that the user can repost the form without entering all the data over again?  Also, how would this "State" handle if the user using the back buttton to go to the previous page.

I can see how the MVC will work with sites displaying information, but I do not see how it will handle data entry type sites very well.  I assume that information is coming in Part 2? :)

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 9:18 AM by Mitch Newlin

Looks like great stuff, Scott. Looking forward to the next post. Keep up the good work.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 9:49 AM by mike kidder

I want my...

I want my...

 MVC

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 10:00 AM by ChadT

Scott, thanks for the fast reply. You'll probably answer this in a future post, but in the ASP.NET MVC framework, how does user entered data (such as from a textbox control, etc) get returned to the controller for processing? Surely it's not by querystring. :D

Also, will the URL routing engine support a URL like this, www.domain.com/<controller>/<var1>/<var2>/<var3> where var1,2, & 3 are passed to the controller?

Thanks!

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 10:37 AM by Paul Stewart

Currently learning ASP.net coming from a Coldfusion background and was struggling to get a handle on frameworks for .net. This will do it though! it all seems much more familiar now. Excellent post.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 10:46 AM by Tei

you sould use GIF's files for screenshots.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 11:18 AM by Abdullah BaMusa

Hi Scott

Very nice feature but I have a question is "ASP.NET MVC Framework" will be shipped with visual studio 2008 or sometime later?

Thank you for your cool way in explanation this is what we cool in Arabic "السهل الممتنع" it can be translated to "the easy thing that can not everyone do".

Go for more please

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 11:36 AM by Hien

Hi Scott,

My application is a shopping cart one. It contains multi-level category and multi-type product. For ex:

domain.com/.../N95.aspx where Cells, Nokia are categories, N95 is product

domain.com/.../Image1.aspx where Nokia are categories, N95 is product, Image1 is an image

or domain.com/.../LG2007.aspx where TV is a category, LG2007 is a television product type (is different from phone product type)

Does the new model support this one?

Thank you

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 11:47 AM by J PHILIP

Hi Scott,

First thank you for all the work.

I learned Rails last year but never used it because it was missing features i liked too much in .NET, but it was time well spent and now we get the best of both worlds.

In the 'feels like Rails' topic, I did not see anything about the Flash, is there?

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 11:56 AM by Jon

Hi Scott,

I'm fairly new to ASP.NET but have a requirement to build a templating system like they have over here - http://www.liquidmarkup.org/

It seems to me that the MVC framework would be a good fit for this because it already seems to use "templates", but my users would need to be able to create templates using simple code like LiquidMarkup instead of writing aspx pages, is this possible ?

Jon

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 12:07 PM by Ben Hayat

Hi Scott;

I have read this blog twice and I find MVC concept to be very natural for development. It's like using LINQ for data processing, MVC feels the same way. Although with this shift, how is it going to impact all these third party products, i.e. Infragistics, DevExpress, Teleriks and ComponentOne, where they are using Ajax and heavy data manipulations and accessing in their grids?

Do you suggest for new project (using MVC), that we should stick to ASP.Net std controls until third party moves on to MVC

OR

do you think MVC should not have any impact on third party products?

Thanks!

..Ben

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 12:08 PM by J PHILIP

Hello Scott,

Thanks for all the work.

I did not see anything about the Flash, is there?

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 12:58 PM by Eugene Agafonov

Hi Scott, from the first glance, would be a possibility to not use inheritance for aspx page classes? I'd rather implement the interface really in that case, and I'm sure you know why I want that :)

You got many questions about controls, well it's obvious that with the model you have, we must have some replacement. I'm very concerned, how do you see the implemention of UI bricks in that model? Call them 'controls' or anything. Even having nested masterpages is, in my opinion, not enough to replace controls as reusable functional parts of UI.

If we don't have controls, we don't have current themeing engine, and so on, and so on. Perhaps you could write a post not about doing concrete things with your MVC framework, but rather describing a concept, how do you develop with that in general, and how do you refactor current ASP.NET applications to fit in that model.

Thanks anyway for a great job, was a pleasure to visit your presentations in Seattle this march :)

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 1:36 PM by Anonymous

This smells a lot like Ruby on Rails. *winks* And I like it.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 1:46 PM by shashi

Dear Scott,

Excited to see the new model, but my idle brain too many questions.

How to integrate MVC architecture with WCF, can I use Controller classes as my ServiceContracts also?

Does the routing engine is similar to WF, can I use workflow within MVC model?

Are you planning a seperate post on addressing AJAX postback calls?

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 3:00 PM by fkruesch

So, this is all really nice and neat... but all about HTTP-GET so far, what about HTTP-POST? I'm not talking about "classic" ASP.NET postbacks, but what would it look like when you fill out a form and post it to the server in order to create or update data?

thanks

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 3:08 PM by Lorenzo Melato

Ciao Scott,

what about asynchronous pages and the new MVC framework?

Thanks

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 4:45 PM by Jose

Hi Scott. Just a simple question: it's mandatory to allways call method RenderView? In MonoRail, if there is a view named as the current controller action, that view will be rendered.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 5:13 PM by Long Nguyen

Hi Scott,

Now I got a chance to read all your article. It is great ! Thanks for it.

But I got some questions to ask you and hope you answer me.

1) In the article, you demonstrated one-way relation between Models and Views - namely from Views to Models. How about from Models to Views ? Models change, View should be changed ! Please cover this in the future parts.

2) Could you talk more about RenderView() implementation in particular how Controllers pass data to Views ?

3) Since controllers handle web flows, How the MVC framework deals with BACK and FORWARD buttons of web browsers ?

Thank you once again.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 5:59 PM by Gene

Scott, could you give a higher level answer to the question of what development or design patterns the MVC framework is meant to address.

While it is good to know that the other models will continue to be supported, and are the feature benefits (unit testing, separation, et.al.), however, for a developer starting from scratch and looking at what the broader development community is doing, can you describe what criteria (team size, application type, development effort, or whatever) one might use to choose between them. Choice good. Market testing good. Expert opinion appreciated.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 6:48 PM by Brian

I think you were answering other questions when mine got posted.  I'm really trying to get a good feel for this new technology.

How is this different then UIP (Microsoft Patterns and Practices) (which is MVC)?

What does this provide that you couldn't do in WWF or UIP?

When would you use UIP vs WWF vs this new implementation of MVC?

When would you not use this?

What are the cons of using this?  I.E. what is this increased complexity gaining you?

For testing, how does this allow you to ensure HTML is generated correctly?  I.E, what makes it different than creating a web application and testing the code behind methods that are generic (that don't render anything) and using Web Unit Tests on the rest?

I think these are valid questions.  As the GoF and Fowler write in their books (sometimes abstractly); patterns are more than just 'recipes' to writing software, an important aspect of using them is knowing when to use them, and more importantly when not to.

Or too put it simply; don't serve the President a PBJ, but at the same time don't create a four coarse meal when all you're having is brunch with your mother.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 6:58 PM by ElQuintero

Scott, Thanks for tutorial.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 9:09 PM by phyo

I wonder if it is similar to what Spring Framework is doing? www.springframework.net

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 14, 2007 10:02 PM by dougramirez

Scott, I caution users of this framework when considering putting business logic in controllers and using the model simply for maintaining state.  Each 'thing' in the model should include it's own business rules, validation rules, security, and persistance rules.  In essence, the things in the model are robust business objects that are component-based and able to exist in the context of an MVC-based web application, a winform app, or wrapped as a windows service.

For example, if you were to follow many of the principles in the CSLA framework, you'd want your business objects in the model, and not split across the controllers and model.

This was mentioned before, but I'll suggest it again, and that is that the model really should be outside the controllers and views in their implementation as a project.  Again, if done properly you're model would contain re-usable components that don't have to know about the views and controllers that interact with them.

The unintended consequence of *not* doing this means that each application would require duplication of rules (business, persistance) across each implementation of MVC as oppossed to many MVC implementations sharing that via their model that contained 1 or more of those shared, robust components.

I'd like to see better guidance from Microsoft when explaining these technologies so that they aren't abused (like UIP was/has been).

Doug Ramirez

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 1:24 AM by ScottGu

Hi QiangLi,

>>>>>>> I am using VS 2008 Beta2 now. How create a new ASP.NET MVC Web Application in VS 2008 beta2?

We haven't released the first preview of the MVC framework just yet.  We will shortly though.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 1:25 AM by ScottGu

Hi ChadT,

>>>>>>  I can't wait to see how data gets passed back to the controller for processing. For example, if I had a textbox and button control on the page that I intended to allow the visitor to enter some text into a DB with... how would the data get back from the view to the controller for processing? Can't possibly be by querystring...

At a high-level, for form input you'd direct your form element to post to an action on your controller.  Your action can then map the incoming parameters as method arguments.  I'll cover how to-do this in a future blog post.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 2:47 AM by Guido

Hi Scott,

This is great stuff! I can't wait to give it a try. I would love to see a post about authentication/autorisation with the MVC framework. I guess forms authentication can't be used here...

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 5:51 AM by Vimpyboy

Hi Scott,

Do you have any plans on implementing support for postbacks? This looks really interesting, but I don´t really know why I should use this instead of the "normal" way with postbacks.

Can you post some examples where you post data instead of just showing it?

Cheers,

Mikael Söderström

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 5:53 AM by SelormeyPaul

What version of the .NET framework is being targeted by this MVC?

I wish it will be .NET 2.x, since it might still be difficult getting

some customers to the .NET 3.x soon.

Best regards,

Paul.

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 8:21 AM by Fisher Ning

Looks fantastic, I will try it in my web project. I’m looking forward to your next part.

One question for you, it seems like all classes are located into ‘Models’ folder. Is that means all business logic and data access classes need to be coded in Models? The ‘App_code’ folder is not necessary for MVC framework?

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 8:34 AM by Ben Hayat

Mr. Scott;

>>At a high-level, for form input you'd direct your form element to post to an action on your controller.  Your action can then map the incoming parameters as method arguments.  I'll cover how to-do this in a future blog post.<<

Question on your comment: So, if we are directing data from the form the elements to controler (via passing them as parameters to the methods in the controler), then I guess the old concept of ASP.Net data binding with input fields are out the door. Which means, we are in charge of getting the data from input fields, sending them to controler and then the methods in the controler decide how and where that data should be saved? Did I undrestand you correctly? It's almost like we can treat the controler as a "Web service" concept when using Silverlight as the front-end? Wow, things are getting nice and structured...

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 12:11 PM by Rafael Alves

Very Very Very GOODDDD

Thanks

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 12:26 PM by Steve

A discussion today around 'Wizards' occurred, I'd like to hear how a wizard with a 'back' button would be handled with MS MVC.  

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 1:29 PM by Jeff Handley

In response to dougramirez's comment about rules being on the model...

I've found that sometimes the rules belong on the model, and sometimes they don't.  The pattern that I've liked using with my MVP pattern is to have a Business Manager class for each Data Model.  Keep the Data Model classes as simply that -- data model/container.  Then implement a Business Manager for the data model entity to perform all actions against the model.  Then, when you have multiple controllers that work against a particular data model entity, they all go through the same manager.

As for data entry validation and security and whatnot though, I still put the responsibility for this on the controller, as this is presentation logic, not business logic.  You can easily find a scenario where the same data entity field can be shown on 2 screens, and on one screen the field is required, but on another, it's not.  With field validation on the data model, this scenario would be difficult to support.

# Introduktion till ASP.NET MVC ramverket

Thursday, November 15, 2007 2:28 PM by Johan Lindfors

Om du är nyfiken på det nyligen annonserade ASP.NET MVC ramverket så bör du absolut läsa Scott Guthries

# Introduktion till ASP.NET MVC ramverket

Thursday, November 15, 2007 3:16 PM by Noticias externas

Om du är nyfiken på det nyligen annonserade ASP.NET MVC ramverket så bör du absolut läsa Scott Guthries

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 4:55 PM by Steve L

Looking forward to using this with our next generation of applications! Much of this reminds me of HTML::Mason. Thanks for the intro.

# MSDN Blog Postings &raquo; Introduktion till ASP.NET MVC ramverket

Pingback from  MSDN Blog Postings  &raquo; Introduktion till ASP.NET MVC ramverket

# Warum das MVC Framework keine gro�en Projekte unterst�tzen wird!

Thursday, November 15, 2007 5:11 PM by XP - Development

Scott Guthrie und Scott Hanselman haben in Ihren Blogs das MVC Framework vorgestellt, das schon bald als Download zur Verf�gung gestellt werden soll. Ich arbeite nun seit �ber zwei Jahren nach dem Model View Controller Pattern. Mit den Erfahrungen, die

# Progress made

Thursday, November 15, 2007 6:15 PM by GrabBag

I just wanted to highlight a quote from Scott Guthrie&#39;s recent post on MVC (emphasis mine): VS 2008

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 6:57 PM by Brian

To Jeff Handley:

>>>>>As for data entry validation and security and whatnot though, I still put the responsibility for this on the controller, as this is presentation logic, not business logic

So you mean to tell me that each application in an enterprise has 'to know' that product managers are the only one that have the ability to modify products?  So you're going to all the way across multiple network hops just to have 'My custom description of this sku' truncated unknowingly by the database (because it's only VARCHAR(20) instead of telling the user on one hop to the web server that the description is to long...or were you going to catch a SqlException to do that?

And why would a controller, a mechanism that just decides what to render, have any logic?  A controller should be nothing more than a piece of code that does navigation based upon arguments...'X requested, go to Y'; this may come from the view or the model; the view display, the model contains business rules (hopefully using some sort of business logic framework).  A controller should be no smarter than your mouse driver.

As Doug pointed out, this is the perfect reason why guidance needs to be given.  I have a feeling only 1/10th of the people out there using MVC have ever actually looked at the origins of MVC (SmallTalk) and find out how and why it came about.  I have a feeling 9/10ths of people would realize they didn't need MVC if they had.

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 9:10 PM by Steve Gentile

Guido:

What you are talking about is at the asp.net level, not webforms level.

So yes, authentication would be part of MS MVC since it also sits on top of the existing asp.net framework.

I think people confuse 'webforms' with 'asp.net'  :)

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 9:24 PM by dougramirez

I'm really glad Jeff Handley responded to my comment.  It's a perfect example of what I meant when I referred to Microsoft introducing technology without proper guidance.

Jeff describes a very typical mistake made in the "I must have a DAL" world of applications usually designed from an ER model and not requirements.  I won't belabor this point.  There are some resources available to describe why separating state management out of your business object is rarely ever needed, or used.  Rocky Lhotka has blogged about this at length.

Jeff’s solution is indicative of a common approach by overzealous architects who seem to be getting “paid by the tier”.  In Jeff’s solution the controllers have to know about business managers who then have to know about the data models.  If you simply put the business rules, validation rules, security, and data access into an object in the model, then you wouldn’t need a bunch of managers, and the controller would simply interact with the appropriate ‘thing’ in the model.  If there were more than one controller that needed to interact with a single ‘thing’ in the model, so be it.  The ‘thing’ is smart.  It knows its own rules, how to validate itself, and to get and save itself.  This minimizes the moving parts in the framework and simplifies the development and maintainability of the application through the very simple concept of (drumroll…) encapsulation!

Data validation and security absolutely do not belong in the controller!  Code reuse flies out the window when that happens, and can’t certainly support logical use cases.  If a property of an entity is required, in one scenario and not in another, then 1 of 2 things is probably going on.  One, the field is either required on both, or not at all and the use case is incorrect.  Or, the property belongs to a different entity.  But for arguments sake, let’s say you have a property of an entity that is required sometimes and sometimes it is not.  Well if you’ve managed to spread you code across controllers, and managers, and data models, and even into the view, then how will your code support a system interface instead of a user interface?  And, when the different sets of code required to deal with the sometimes, some not requirement it’s very likely that you will need to persist evidence of where the field came from so that the data store and other parts of the application that use the data know which of the views allowed it or didn’t in order to instantiate an object in the model appropriately from that state.

If all this sounds overly complex, it’s because it is.  The tendency to take these wonderful tools from Microsoft, that are intended to make our jobs easier and our products cheaper, in an unguided direction that results in over-architected solutions that become brittle from lack of proper design happens all to often.  This is precisely why I urge caution, and request that Microsoft is very careful about introducing this technology to the community.

Thanks Jeff for posting a response.  It provided the opportunity to elaborate more on the problems of unguided technology introduction.

# e-velocity - Trevor Delamorandiere &raquo; Blog Archive &raquo; ASP.NET MVC Framework

Pingback from  e-velocity - Trevor Delamorandiere  &raquo; Blog Archive   &raquo; ASP.NET MVC Framework

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 15, 2007 9:29 PM by Haifeng

If I want pass lots of data in different data structs from a action to a view,how should I do width this?

# Izindaba #18

Friday, November 16, 2007 12:06 AM by From the software development trenches

Time for another weekly round-up of developer news that focuses on .NET, agile and general development

# re: ASP.NET MVC Framework (Part 1)

Friday, November 16, 2007 12:59 AM by SixYo

Can it run on vs2005 / .net framework 2.0 without any iis mapping settings ?

# re: ASP.NET MVC Framework (Part 1)

Friday, November 16, 2007 2:04 AM by Usoft

Hi Scott,

I am completely new with MVC, i want to try it but i cannot find "ASP.NET MVC Web Application" in my Visual Studio 2008 beta 2. Could you tell me where can i find it?

Thank

# re: ASP.NET MVC Framework (Part 1)

Friday, November 16, 2007 3:01 AM by Lohith G N ([email protected])

Scott,

I have been reading this blogs and thanks for scratching inspit of your busy schedule.

I am playing around orcas beta2. So is it possible for me to develop these with that. If not how can i code these MVC things.

regards

Lohith

# re: ASP.NET MVC Framework (Part 1)

Friday, November 16, 2007 4:04 AM by Joey Chömpff

Scott nice article. I'll hope that you post soon part II.

I would also like to see the differences with MVP-pattern or

the WCSF in future posts.

Tia,

Joey

# re: ASP.NET MVC Framework (Part 1)

Friday, November 16, 2007 8:58 AM by Steve Gentile

Scott,

Will MS MVC support an 'Wizard' functionality?

# re: ASP.NET MVC Framework (Part 1)

Friday, November 16, 2007 9:43 AM by Steve Gentile

Some context around the wizard question above:

www.castleproject.org/.../creatingwizards.html

Something similiar to this?

# re: ASP.NET MVC Framework (Part 1)

Friday, November 16, 2007 9:58 AM by Brian

To dougramirez:

Here Here!

# RSS Feed with the new ASP.NET MVC Framework - Zuny.cn

Friday, November 16, 2007 10:25 AM by RSS Feed with the new ASP.NET MVC Framework - Zuny.cn

Pingback from  RSS Feed with the new ASP.NET MVC Framework  -  Zuny.cn

# ASP.NET MVC Framework &laquo; vincenthome&#8217;s Software Development

Pingback from  ASP.NET MVC Framework &laquo; vincenthome&#8217;s Software Development

# re: ASP.NET MVC Framework (Part 1)

Friday, November 16, 2007 1:08 PM by Michael Stuart

This all seems nice for certain types of applications, like ones in your example that allow you to do basic views (like a basic company website that lists products).  I still don't understand how you could build a very complex page using this framework.  One of the "workhorse" pages in my application has multiple grids, many different webcontrols, and very complex business logic, as well as uses AJAX (Telerik's) in order to speed things up a bit.  This seems like quite a departure from how most applications are built today.  I doubt my company would ever use this for the business applications we do.  Maybe I just don't "get it" yet though, so I'm trying to keep an open mind.

# re: ASP.NET MVC Framework (Part 1)

Friday, November 16, 2007 1:14 PM by Jason Bunting

Just finished reading this today and wanted to thank you for a lucid post about what you guys are doing. I have been evaluating MonoRail for the last few weeks, but after dealing with some issues that are not well-documented by the maintainers of MonoRail and reading this article, I think I am going to wait until this is released instead of waste any more of my time on MonoRail.

Look forward to your next - thank you for taking the time to give those of us without access to the bits a nice preview - I am salivating just thinking about this stuff.

:P

# re: ASP.NET MVC Framework (Part 1)

Friday, November 16, 2007 2:04 PM by phemals

Scott,

I would like to know more details of MVC pattern implementation in ASP.NET 2.0. I would like to know about page class reference to view folder. ASP.NET compiles each folder in separate assembly and give random assembly names. simply, can you put some light on page class reference to other .net folders?

# re: ASP.NET MVC Framework (Part 1)

Friday, November 16, 2007 4:39 PM by fezzig

Hi Scott,

Great article, this is the most user-friendly explanation of MVC that I've seen.

Most of my projects in the past have required grids (DataGrid, GridView, etc.) that must be formatted dynamically based on the data in a certain row/column.  For instance, highlighting a row where the cost column is less than $100.00.  Usually this is handled in the RowDataBound or RowCreated method in the page's code behind.  How would you handle this scenario using the MVC framework?  

Apologies if you've already addressed this above - there's a lot of posts here!

# re: ASP.NET MVC Framework (Part 1)

Saturday, November 17, 2007 8:15 AM by Mort

@Michael Stuart

People have been building complex MVC applications for quite some time now.  This pattern doesn't equate to how complex a page can be.  I'm not sure I understand why you think MVC cannot handle complexity???  I would say the opposite: as webform pages become more complex they difficult to manage, etc...

@Jason Bunting:

"but after dealing with some issues that are not well-documented by the maintainers of MonoRail and reading this article, I think I am going to wait until this is released instead of waste any more of my time on MonoRail."

In some opensource projects it's expected that you know how to read code, get under the covers and explore, join mailing list, ask questions, etc... it's not a billion dollar company handling out silver platters...

I can see it now, a limited view of webform-only developers, who probably don't know how a form POST works will be critical of this approach.  

I know I personally look forward to a framework that doesn't mungle my ID's, that allows easy use of controls made by YUI, Dojo, Ext, jQuery, etc... and I can use C# to handle server side requests.

# { null != Steve } &raquo; ASP.NET MVC Framework (Part 1)

Saturday, November 17, 2007 6:56 PM by { null != Steve } » ASP.NET MVC Framework (Part 1)

Pingback from  { null != Steve } &raquo; ASP.NET MVC Framework (Part 1)

# ASP.NET MVC フレームワーク (パート 1)

Saturday, November 17, 2007 8:37 PM by Chica's Blog

ASP.NET MVC フレームワーク (パート 1)

# re: ASP.NET MVC Framework (Part 1)

Saturday, November 17, 2007 9:09 PM by dancoe

I have made my own version of the mvc framework have a look on my blog. undocnet.blogspot.com/.../unofficial-aspnet-mvc.html

# ASP.NET MVC フレームワーク

Sunday, November 18, 2007 9:15 AM by Shizuku Blog ~ .NET Study版 ~

ASP.NET MVC フレームワーク

# re: ASP.NET MVC Framework (Part 1)

Sunday, November 18, 2007 11:55 AM by Juan María

Hi Scott, very good and big post.

You can read this post in spanish here:

thinkingindotnet.wordpress.com/.../aspnet-mvc-framework-primera-parte

# Links of the week #11 (week 46/2007)

Sunday, November 18, 2007 4:08 PM by Bite my bytes

Links of the week #11 (week 46/2007)

# Web Application Development with Microsoft Technologies &raquo; New ASP.NET MVC Framework Explained

Pingback from  Web Application Development with Microsoft Technologies &raquo; New ASP.NET MVC Framework Explained

# re: ASP.NET MVC Framework (Part 1)

Sunday, November 18, 2007 11:58 PM by Jack

Hi Scott,

This seems like a boon to the ASP.NET world.  I have some questions:

1. Is there any effect on performance?  Consider an application with large-scale objects in its model that get output to large views.

2. At the architecture level, what are the changes to the request/response lifecycle?  Will there be documentation on this released with the feature?

3. What thoughts are kicking around in your team as to how to handle mixed content pages (e.g. views with webparts)?

# ASP.NET MVC框架(第一部分)~~~

Monday, November 19, 2007 12:39 AM by 隱姓埋名

【原文地址】ASP.NETMVCFramework(Part1)【原文發表日期】

# re: ASP.NET MVC Framework (Part 1)

Monday, November 19, 2007 5:17 AM by Andy Macdonald

Hi Scott,

Great post the MVC framework defiantly looks like something we will use. We've been looking at Project Astoria as well and i was wondering how you would see them complementing each other or if they are competing technologies?

Thanks for the post

Andy

# re: ASP.NET MVC Framework (Part 1)

Monday, November 19, 2007 6:25 AM by Harshul Shah

I think inclusion of MVC Project Template in .NET will give a good choice to developers of CakePHP. As many developers are using CakePHP to implement MVC in PHP and the MVC is becoming more and more popular to for web based application development. This post is really providing a good insight to implement MVC Project Template. I am looking forward to use it with VS 2008.

Thank You Scott.

# Ein weiterer Blick in die Zukunft: MVC Support in ASP.net

Monday, November 19, 2007 10:11 AM by (ASP).net Programmierung und ihre Folgen.

Durch Zufall bin ich heute auf den Blog von Scott Gu gestoßen - den vermutlich alle der fleißigen .net

# Keeping Up With ASP.NET MVC Framework

Monday, November 19, 2007 2:59 PM by Loosely Coupled Human Code Factory

In my always continuing efforts to keep up with the coolest frameworks, architecture, and other tidbits,...

# rascunho &raquo; Blog Archive &raquo; links for 2007-11-19

Monday, November 19, 2007 3:17 PM by rascunho » Blog Archive » links for 2007-11-19

Pingback from  rascunho  &raquo; Blog Archive   &raquo; links for 2007-11-19

# Tucows Services &raquo; Tucows Developer Blog &gt; Blog Archive &raquo; An MVC Framework for ASP.NET

Pingback from  Tucows Services &raquo; Tucows Developer Blog  &gt; Blog Archive   &raquo; An MVC Framework for ASP.NET

# Global Nerdy &raquo; Blog Archive &raquo; An MVC Framework for ASP.NET

Pingback from  Global Nerdy  &raquo; Blog Archive   &raquo; An MVC Framework for ASP.NET

# Criticism of my Extended MVP Pattern

Monday, November 19, 2007 5:50 PM by Jeff Handley

Criticism of my Extended MVP Pattern

# Community Convergence XXXVI

Monday, November 19, 2007 6:09 PM by Charlie Calvert's Community Blog

Welcome to the thirty-sixth issue of Community Convergence. This is the big day, with Visual Studio 2008

# W&ouml;chentliche Rundablage: ASP.NET MVC, Powershell, .NET 3.5, Visual Studio 2008, YUI, Windows CE, Silverlight&#8230; | Code-Inside Blog

Pingback from  W&ouml;chentliche Rundablage: ASP.NET MVC, Powershell, .NET 3.5, Visual Studio 2008, YUI, Windows CE, Silverlight&#8230; | Code-Inside Blog

# ASP.NET Rails clone? &laquo; dambalah

Monday, November 19, 2007 6:33 PM by ASP.NET Rails clone? « dambalah

Pingback from  ASP.NET Rails clone? &laquo; dambalah

# re: ASP.NET MVC Framework (Part 1)

Monday, November 19, 2007 9:31 PM by Michael Bach

Scott,

Thanks for the great article. I've been waiting for this by the sidelines and this maybe the Christmas gift I've been waiting for. I've dived into RoR and just love the simplicity and development architecture, however at times miss the power available from .NET framework so I'm excited about the direction ASP.NET is taking. CSS friendly adapters are no longer cutting it. I want full control. Anyhow from what

Looks like based on the discussions here, validation and model security is placed into the hands of the controller? This seems counter to MVC. RoR provided deep emphasis in placing validation and security to the model code. ActiveRecord handles model integrity. How does ASP.NET MVC handle this? Does the default model handle this? What are your recommendations?

I agree with DougRamirez "Data validation and security absolutely do not belong in the controller!" Validation in the controller kinda of makes all this MVC hype mute.

# re: ASP.NET MVC Framework (Part 1)

Monday, November 19, 2007 9:57 PM by yangyi2336

Thank you for your acticle!I'm looking for the next.That's very cool

# Response to Criticism of my Extended MVP Pattern

Monday, November 19, 2007 10:02 PM by Jeff Handley

Response to Criticism of my Extended MVP Pattern

# re: ASP.NET MVC Framework (Part 1)

Monday, November 19, 2007 10:05 PM by Jeff Handley

I wrote up a response to Doug's and Brian's criticisms of my MVP pattern.  It can be found here: blog.jeffhandley.com/.../response-to-criticism-of-my-extended-mvp-pattern.aspx

Excerpt:

What it boils down to though is where you want to put the logic.  The logic exists no matter what.  If you choose to make your entity classes fully self-contained, and then build an ignorant controller and view, that's your prerogative.  You might find this easy to build and maintain, but you might find that your business model layer is so complex and bloated with every type of logic, that it becomes difficult to maintain.  Meanwhile, spreading the logic out a little so that you have separation of concerns will help each individual layer seem less overwhelming, while still applying all of the same logic.  But you do end up with more plumbing to make it all work.

Thanks,

Jeff Handley

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 20, 2007 5:34 AM by Phan Huy Viet

Hi Scott !

This is great article, thank so much but i have some questions about your ideas that you explained above, first that is does this method can only develop on VS 2008? and second that is can you tell me about extendable of this MVC framework?

Finally, thanks

Phan Huy Viet

# ASP.NET MVC Framework

Tuesday, November 20, 2007 3:16 PM by Tomislav Bronzin [RD&MVP]

Scott Guthrie wrote excelent 1. part of his tutorial (with lot of pictures and how-to&#39;s) about MVC

# VS2008 is Here! Now Bring On the Fun Stuff!!!

Tuesday, November 20, 2007 7:57 PM by Rob Zelt - Lighting Up The Web

# Darkleo&#8217;s Blog &raquo; Blog Archive &raquo; MVC/MVP Framework f??r ASP.NET von Microsoft

Pingback from  Darkleo&#8217;s Blog &raquo; Blog Archive   &raquo;  MVC/MVP Framework f??r ASP.NET von Microsoft

# ASP.NET MVC Implementation

Wednesday, November 21, 2007 10:46 AM by Rahul's Notes

Wow. Finally an MVC implentation in ASP.NET which really fits what we're doing in Rainbow. My friend

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 21, 2007 10:56 AM by Kaveh

Hi Scott, I'm literally astounded of this whole MVC thing, really great work! had kind of a vague idea though : I take it that now with MVC it is possible to develop a full ajax-based web app - like the new Yahoo mail - without the need for ASP.Net's callback mechansim - with those nasty hacks for triggering a callback via textchanged or ... JS events - or ASP.Net AJAX's update panel, via client side frameworks like Ext, YUI or even ASP.Net AJAX and combining them with script# - completely getting rid of the classical ASP.Net's mechanism with a zero-postback-ajax-app ! Please correct me if I'm wrong.

And a question : Would it still be rational to develop an ajax-based composite control - embedding JS and CSS code in it, handling postback vertigos and maintaining its state - in order to have for example a live suggest control or is it better to leverage the MVC mechanism from a full fledged client side ajax app? , thnx.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 21, 2007 11:27 AM by Kaveh

Hi Scott, I'm literally astounded of this whole MVC thing, really great work! had kind of a vague idea though : I take it that now with MVC it is possible to develop a full ajax-based web app - like the new Yahoo mail - without the need for ASP.Net's callback mechansim - with those nasty hacks for triggering a callback via textchanged or ... JS events - or ASP.Net AJAX's update panel, via client side frameworks like Ext, YUI or even ASP.Net AJAX and combining them with script# - completely getting rid of the classical ASP.Net's mechanism with a zero-postback-ajax-app ! Please correct me if I'm wrong.

And some questions :

- Would it still be rational to develop an ajax-based composite control - embedding JS and CSS code in it, handling postback vertigos and maintaining its state - in order to have for example a live suggest control or is it better to leverage the MVC mechanism from a full fledged client side ajax app?

- Is it feasible to use CSLA.Net as the Model portion of ASP.Net MVC framework?

And on a slightly irrelevant note: Are you and the .net folks there going to integrate a great tool like Nikhil Kothari's script# and also great libs like Ext or YUI into the future ASP.Net [Ajax] or VS builds or service packs or future builds of ASP.Net AJAX will simply outmaneuvre them?, thnx.

# Boatload of new features in Visual Studio 2008 &laquo; WPF Wonderland

Pingback from  Boatload of new features in Visual Studio 2008 &laquo; WPF Wonderland

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 22, 2007 9:09 AM by Kaveh

Hi Scott, I'm literally astounded of this whole MVC thing, really great work! had kind of a vague idea though : I take it that now with MVC it is possible to develop a full ajax-based web app - like the new Yahoo mail - without the need for ASP.Net's callback mechansim - with those nasty hacks for triggering a callback via textchanged or ... JS events - or ASP.Net AJAX's update panel, via client side frameworks like Ext, YUI or even ASP.Net AJAX and combining them with script# - completely getting rid of the classical ASP.Net's mechanism with a zero-postback-ajax-app ! Please correct me if I'm wrong.

And some questions :

- Would it still be rational to develop an ajax-based composite control - embedding JS and CSS code in it, handling postback vertigos and maintaining its state - in order to have for example a live suggest control or is it better to leverage the MVC mechanism from a full fledged client side ajax app?

- Is it feasible to use CSLA.Net as the Model portion of ASP.Net MVC framework?

And on a slightly irrelevant note: Are you and the .net folks there going to integrate a great tool like Nikhil Kothari's script# and also great libs like Ext or YUI into the future ASP.Net [Ajax] or VS builds or service packs or future builds of ASP.Net AJAX will simply outmaneuvre them?, thnx.

# The ASP.NET MVC framework, using the WCSF as a yardstick!

Thursday, November 22, 2007 10:39 AM by Simon Ince's Blog

Well, right up until this morning I was planning on blogging about the similarities and differences between

# re: ASP.NET MVC Framework (Part 1)

Thursday, November 22, 2007 12:42 PM by Hsingyi512

Scott,

Happy Thanksgiving ! Can't add much more to whats already been said.

I admire your enthusiasm and passion towards your work.  

# Apuntes sobre el ASP.NET MVC Framework

Sunday, November 25, 2007 7:06 AM by Jorge Dieguez Blog

A partir de este mes de octubre han aparecido diversos artículos que muestran cómo funciona el MVC framework

# re: ASP.NET MVC Framework (Part 1)

Sunday, November 25, 2007 10:56 PM by Bob

Any word on release date... Scott.. Looking forward to try it

# re: ASP.NET MVC Framework (Part 1)

Monday, November 26, 2007 8:21 AM by RoGer

Thanks for the post, I don't like the way you have to give the view name as a string.  Couldn't this be implemented using an enum instead

# re: ASP.NET MVC Framework (Part 1)

Monday, November 26, 2007 11:06 AM by Kaveh

Hi Scott,

I saw this :

" >>>>>>> Should we expect any difference in performnace between MVC and WebForms model?

No - in general you'll find both about the same in terms of performance. "

And I wondered how come MVC - with the omission of viewstate injection and then parsing it again in every postback and rebuilding the object model again with that parsed data, to start with! - couldn't beat WebForms in performance?

Thnx

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 27, 2007 3:23 AM by ScottGu

Hi RoGer,

>>>>>>>> Thanks for the post, I don't like the way you have to give the view name as a string.  Couldn't this be implemented using an enum instead

Yes - if you wanted to you could store the view name as an enum.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 27, 2007 3:24 AM by ScottGu

Hi Bob,

>>>>>>> Any word on release date... Scott.. Looking forward to try it

We should have the first public preview build available for download within the next two weeks.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 27, 2007 6:01 AM by Live Wire

Hi Scott

Nicely explained article on ASP.Net MVC framework.

Can you give a comparison between MVC and MVP with respect to ASP.Net. And which is a better option in what type of situation.

# ASP.Net MVC Framework explained!

Tuesday, November 27, 2007 8:30 AM by Ezone IntraBlog

# re: ASP.NET MVC Framework (Part 1)

Tuesday, November 27, 2007 9:18 AM by f b

It seems that this is very similar to the "Web Client Software factory" developed by the MS

msdn.microsoft.com/.../ExtremeASPNET

patterns and practices group. When would one techonlogy be preferable to another ?

# Are you excited about ASP.NET MVC?

Tuesday, November 27, 2007 3:46 PM by Todd Anglin's Code Campground

As I observe the reactions across the Internets about the forthcoming ASP.NET MVC framework , there seem

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 28, 2007 1:10 AM by Mahi

Hello Scott,

Thanks for your blog. This is something everyone is waiting for.

Is'nt the MVC framework, infact the Controller, implementation of the Front Controller pattern?

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 28, 2007 2:59 AM by ScottGu

Hi Mahi,

>>>>>> Is'nt the MVC framework, infact the Controller, implementation of the Front Controller pattern?

Yes - the ASP.NET MVC framework uses a front-controller pattern.

Thanks,

Scott

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 28, 2007 4:06 AM by Viraj24

hi scott!!!

thanks for this indeed helpful post

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 28, 2007 5:32 AM by Jeff Pearce

Hi Scott

I'm busy designing (functionality) a system to be built in .NET and we are going to begin construction in mid-January 2008.  I'm very interested in using VS2008 and the ASP.NET MVC framework, possibly using SubSonic as well.  Will the framework be ready for production use by then?  (I see you mentioned that a public preview build will be available in two weeks)  The reason I ask is that the system design will change depending on the framework that we go for.

# ReSharper y Visual Studio 2008

Wednesday, November 28, 2007 8:54 AM by Javier-Romero

ReSharper y Visual Studio 2008

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 28, 2007 11:28 AM by jati

Hi scott,

I have been using the MVC in windows mobile development base on Microsoft Compact Software Factory p&p. I found dependency injection and event broker.

Will the framework have this features?

I learned the WCSF p&p. It is similiar with MCSF.

So...what's the comparison between WCSP p&p and ASP.NET Framework MVC?

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 28, 2007 11:32 AM by Salman

This looks pretty interesting, I was just reading about NVelocity and MonoRail.

# Planejamento Estrat&#233;gico de TI /ou: Resmungo de um desenvolvedor

Wednesday, November 28, 2007 12:22 PM by C que sabe!

Você, leitor deste blog, pode pensar que tenho algum problema com a Microsoft, pois o conteúdo dos últimos...

# ASP.NET MVC Framework

Wednesday, November 28, 2007 10:47 PM by Jim Zimmerman

# Testing ScottGu: Alternate View Engines with ASP.NET MVC (NVelocity)

Wednesday, November 28, 2007 11:11 PM by Chad Myers' Blog

Testing ScottGu: Alternate View Engines with ASP.NET MVC (NVelocity)

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 28, 2007 11:18 PM by Fallon Massey

This is very similar to a project on Codeplex called ProMesh, except Promesh stays away from any microsoft controls.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, November 28, 2007 11:48 PM by Fallon Massey

See this page.

www.nikhilk.net/Ajax-MVC.aspx

# ASP.NET MVC framework preview to be released next week

Friday, November 30, 2007 1:38 AM by Maarten Balliauw

ASP.NET MVC framework preview to be released next week

# .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Friday, November 30, 2007 9:43 AM by Gyun's Blog

.NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

# MVC Frameworks in .NET &laquo; Joseph Billena

Friday, November 30, 2007 10:44 AM by MVC Frameworks in .NET « Joseph Billena

Pingback from  MVC Frameworks in .NET &laquo; Joseph Billena

# re: ASP.NET MVC Framework (Part 1)

Sunday, December 02, 2007 1:32 PM by jeffreyabecker

I know this may be a little bit to in-depth for the state of the MVC Framework at the moment but...

Does the MVC framework somehow expose the controller, action & parameters sub-strings in any way? If so, when in the HttpApplication event cycle is the determination of controller / action / parameters done?  If this happens before HttpApplication.AuthroizeRequest, it opens up some really nice authorization possiblities which I've had to kind of shoehorn into the system in the past.

# Microsoft .NET Web 相關產品計畫

Monday, December 03, 2007 3:54 AM by Tom Lee's blog

Scott Guthrie 於2007年11月29日在他的 blog 中,透露了新的 Microsoft .NET Web 開發相關計畫 ( weblogs.asp.net/.../net-web-product-roadmap-asp-net-silverlight-iis7.aspx

# re: ASP.NET MVC Framework (Part 1)

Tuesday, December 04, 2007 2:36 AM by Mehul Harry

Phil Haack just did a talk tonight on this topic at the LA .NET Usergroup and he was great! Very cool stuff. Can we see some posts on how migration can (eventually) be done from webforms? I know it's such a different model but this will be one of the big keys for many ASP.NET devs to get their head around. No more webform, postback, viewstate, etc.

Thanks.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, December 04, 2007 7:01 AM by Raf

Could you please post the source for this project? Even if it's beta, it will be easier to learn from it now than to get the CTP later on.

# ASP.NET MVC Framework (Part 2): URL Routing &laquo; .NET Framework tips

Pingback from  ASP.NET MVC Framework (Part 2): URL Routing &laquo; .NET Framework tips

# ASP.Net MVC (Model View Controller) - More Information

Wednesday, December 05, 2007 8:02 AM by Roger Whitehead's blog.

Scott Guthrie has made Part 2 of his blog on this important addition to ASP.Net available on his blog

# ASP.NET MVC Framework Nedir?

Wednesday, December 05, 2007 12:24 PM by turkaspx.net

ASP.NET MVC Framework Nedir?

# Rob Conery &raquo; ASP.NET MVC Preview: Using The MVC UI Helpers

Wednesday, December 05, 2007 6:02 PM by Rob Conery » ASP.NET MVC Preview: Using The MVC UI Helpers

Pingback from  Rob Conery &raquo; ASP.NET MVC Preview: Using The MVC UI Helpers

# ASP.NET MVC stuff

Thursday, December 06, 2007 11:11 AM by Quest of the Techno Zen

A lot of asp.net mvc stuff start to surface. ASP.NET MVC Preview: Using The MVC UI Helpers (via Rob Conery) ScottGu: ASP.NET MVC Framework (Part 1) ASP.NET MVC Framework (Part 2) ...

# Geek Daily &raquo; Blog Archive &raquo; MVC Roundup December 6 2007

Thursday, December 06, 2007 11:29 AM by Geek Daily » Blog Archive » MVC Roundup December 6 2007

Pingback from  Geek Daily  &raquo; Blog Archive   &raquo; MVC Roundup December 6 2007

# Rob Conery &raquo; ASP.NET MVC: Using RESTful Architecture

Thursday, December 06, 2007 6:34 PM by Rob Conery » ASP.NET MVC: Using RESTful Architecture

Pingback from  Rob Conery &raquo; ASP.NET MVC: Using RESTful Architecture

# #2 &laquo; zahirj.wordpress.com

Friday, December 07, 2007 2:52 PM by #2 « zahirj.wordpress.com

Pingback from  #2 &laquo; zahirj.wordpress.com

# ASP.NET MVC Framework (Part 3): Passing ViewData from Controllers to Views &laquo; .NET Framework tips

Pingback from  ASP.NET MVC Framework (Part 3): Passing ViewData from Controllers to Views &laquo; .NET Framework tips

# MVC Framework explosion

Saturday, December 08, 2007 3:51 PM by TomsTechBlog.com

MVC Framework explosion

# ASP.NET MVC Framework (Delayed)

Sunday, December 09, 2007 2:16 AM by Tony Testa's World

ASP.NET MVC Framework (Delayed)

# MVC Framework explosion

Sunday, December 09, 2007 6:55 AM by TomsTechBlog.com

MVC Framework explosion

# ASP.NET MVC Framework (Part 4): Handling Form Edit and Post Scenarios

Sunday, December 09, 2007 7:42 AM by ScottGu's Blog

The last few weeks I have been working on a series of blog posts that cover the new ASP.NET MVC Framework

# ASP.NET MVC preview available &raquo; DamienG

Sunday, December 09, 2007 8:25 PM by ASP.NET MVC preview available » DamienG

Pingback from  ASP.NET MVC preview available &raquo; DamienG

# Microsoft Releases First CTP of their MVC Framework &laquo; Accidental Technologist

Pingback from  Microsoft Releases First CTP of their MVC Framework &laquo; Accidental Technologist

# ASP.Net MVC Quickstart &laquo; If only I were . . .

Sunday, December 09, 2007 10:43 PM by ASP.Net MVC Quickstart « If only I were . . .

Pingback from  ASP.Net MVC Quickstart &laquo; If only I were . . .

# ASP.NET 3.5 Extensions Preview released

Sunday, December 09, 2007 11:03 PM by Devin Rader

ScottGu and Brad Abrams have announced the release of the first preview of the ASP.NET 3.5 Extensions.

# re: ASP.NET MVC Framework (Part 1)

Sunday, December 09, 2007 11:04 PM by ChrisTorng

Where can I found TestViewEngine's defition or implement?

# System.Web.Mvc.Ctp.Download.Now

Sunday, December 09, 2007 11:20 PM by System.Web.Mvc.Ctp.Download.Now

Pingback from  System.Web.Mvc.Ctp.Download.Now

# ASP.NET 3.5 Extensions Cee Teep Pee! at Lost In Tangent

Sunday, December 09, 2007 11:58 PM by ASP.NET 3.5 Extensions Cee Teep Pee! at Lost In Tangent

Pingback from  ASP.NET 3.5 Extensions Cee Teep Pee! at  Lost In Tangent

# ASP.Net 3.5 Extensions Preview &laquo; C:/&gt;dir *.*

Monday, December 10, 2007 6:50 AM by ASP.Net 3.5 Extensions Preview « C:/>dir *.*

Pingback from  ASP.Net 3.5 Extensions Preview &laquo; C:/&gt;dir *.*

# re: ASP.NET MVC Framework (Part 1)

Monday, December 10, 2007 8:23 AM by Venu

Well, is microsoft trying to follow/copy Java/Strutus in creating apps using MVC? geez!

# devdangero.us &raquo; ASP .NET 3.5 extensions are out the door!

Pingback from  devdangero.us &raquo; ASP .NET 3.5 extensions are out the door!

# re: ASP.NET MVC Framework (Part 1)

Tuesday, December 11, 2007 3:44 PM by Sahin Boydas

I have built <a href="http://www.cocukceptelefonu.com">Çocuk Cep Telefonu</a> using MVC.

# ASP.NET MVC Framework (Part 4): Handling Form Edit and Post Scenarios &laquo; .NET Framework tips

Pingback from  ASP.NET MVC Framework (Part 4): Handling Form Edit and Post Scenarios &laquo; .NET Framework tips

# re: ASP.NET MVC Framework (Part 1)

Wednesday, December 12, 2007 6:51 AM by Andrew Rea

Scott,

Thanks for the excellent blogs on this new framework, really lapping it up here.  BUT, can you tell me how and where you have defined the TestViewEngine, as i cannot find it anywhere.  IViewFactory I can find obviously but as for the actual class, I think you have omitted a piece on its location, design or implmentation.

Kind Regards,

Andrew Rea

# re: ASP.NET MVC Framework (Part 1)

Wednesday, December 12, 2007 7:50 PM by Kevin Frey

Firstly, your articles are fantastic and a credit to you.

I guess the HTTP routing feature be used on its own as a "poor mans" alternative to Web Services? For example, a web client using XMLHttpRequest needing to obtain some data from the web server in JSON format?

I therefore presume that the View is not necessarily limited to returning only HTML - it could theoretically return any Mime type (for example, an image of a product via a URL such as "/Products/Image/55")?

Have any performance tests been done to compare the overhead of processing requests via the MVC HTTP routing mechanism compared to direct invocation of a web-forms .aspx page? Does the fact that the controller invokes/calls the view mean the actual "view" .aspx page (the physical file) is loaded, or is this simply an in-memory invocation through the compiled assembly? Can the .aspx files of the view still be modified "on the fly" without recompiling?

Finally, if Silverlight was going to be used for a data-centric application, does MVC benefit that in any manner compared to using a SOAP/WSDL declared Web Service (or any other technique you care to mention)?

# Breakpoint &raquo; Arhiiv &raquo; Tech Ed Developers 2007 j??relkaja

Thursday, December 13, 2007 4:42 AM by Breakpoint » Arhiiv » Tech Ed Developers 2007 j??relkaja

Pingback from  Breakpoint  &raquo; Arhiiv   &raquo; Tech Ed Developers 2007 j??relkaja

# MSDN Blog Postings &raquo; What's new in Visual Studio 2008?

Friday, December 14, 2007 5:19 PM by MSDN Blog Postings » What's new in Visual Studio 2008?

Pingback from  MSDN Blog Postings  &raquo; What's new in Visual Studio 2008?

# Using ASP.NET MVC on IIS 5

Friday, December 14, 2007 6:13 PM by Doron's .NET Space

This is a small note for people trying to play with the MVC framework , and that are currently using

# Microsoft Cutting Edge - Too Much Of A Good Thing?

Saturday, December 15, 2007 6:12 PM by Agile Web Technologies

Microsoft Cutting Edge - Too Much Of A Good Thing?

# Publicada ASP.NET 3.5 Extensions CTP. &laquo; Thinking in .NET

Sunday, December 16, 2007 11:34 AM by Publicada ASP.NET 3.5 Extensions CTP. « Thinking in .NET

Pingback from  Publicada ASP.NET 3.5 Extensions CTP. &laquo; Thinking in .NET

# Erster Eindruck von der ASP.NET MVC mit dem Visual Web Developer Express | Code-Inside Blog

Pingback from  Erster Eindruck von der ASP.NET MVC mit dem Visual Web Developer Express | Code-Inside Blog

# SDE: even geen ADO.Net

Sunday, December 16, 2007 3:48 PM by Even Lijkt Elke Voortgang Een Logische Daad

Ook geen zin om een boek van 800+ paginas door te nemen om een stukje nieuwe techniek te gaan gebruiken...?...

# Considerações iniciais sobre o ASP.NET MVC Framework

Monday, December 17, 2007 10:37 AM by Oneda

Antes de você continuar, gostaria de deixar claro que, enquanto este post é escrito, o acesso ao ASP.NET

# re: ASP.NET MVC Framework (Part 1)

Monday, December 17, 2007 4:22 PM by ChosenBreed

Hi Scott,

That's great stuff. I've been looking to implement something like this. Someone showed me an MVC implementation using HttpHandlers as the controllers (or access to the controller classes) but this is a much neater and cleaner model. I look forward to working with.

# re: ASP.NET MVC Framework (Part 1)

Tuesday, December 18, 2007 9:43 AM by Michael Kennedy

Hey Scott,

Great work. Is there a chance you could post the unit test code shown in this post?

Thanks!

Michael

# re: ASP.NET MVC Framework (Part 1)

Tuesday, December 18, 2007 12:41 PM by Greg McCarty

When I read your blogs with code samples, I try to follow along by building them.

When I do this with the Categories.aspx page, I have a couple of interesting issues.

First, the Html.ActionLink reference give me the following error when I access the page:

CSW1502: The best overloaded method match for 'System.Web.Mvc.HtmlHelper.ActionLink(string,string)' has some invalid arguments.

If I cast the first argument as a string, no problem.

Second, inside the code beside (Categories.aspx.cs), in the Page_Load event, I can't get it to recognize the existence of the categoryList control.  I get the blue underline, compile error of 'The name 'categoryList' does not exist int the current context'.

I'm using the CTP release.  Any thoughts?

GregM

# First Thoughts On MVC.NET

Wednesday, December 19, 2007 5:01 AM by Ranko

Finally some time for .net. Since Scott and Phil started writing about is I wanted to read and try out

# re: ASP.NET MVC Framework (Part 1)

Wednesday, December 19, 2007 3:13 PM by Aneesh Shrikhande

Scott:

For Views, you mentioned two approaches to creating Views. Is one preferable to the other, for a brand-new (no legacy) application?

Thanks,

Aneesh Shrikhande

# re: ASP.NET MVC Framework (Part 1)

Thursday, December 20, 2007 2:58 AM by Seth Thomas Rasmussen

Nice of you to join us.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, December 26, 2007 5:04 AM by BK

I have the same problem as GregM above. I get the message: 'The name 'categoryList' does not exist in the current context' when I try to reference the ListView in code-behind. Ideas?

/BK

# re: ASP.NET MVC Framework (Part 1)

Wednesday, December 26, 2007 5:54 AM by BK

Found a solution to mine and Greg's problem on another site: www.squaredroot.com/.../MVC-Bug-Broken-Codebehind.aspx

/bk

# re: ASP.NET MVC Framework (Part 1)

Wednesday, December 26, 2007 1:13 PM by Filip Zawada

Greg McCarty,

I had same problems.

Casting to string is somewhat strange, because Eval already returns that type. It helped, however.

Your second problem can be worked-around quite easy: just declare that control in your code behind.

This is because for some reason (any idea why?) MVC Views don't have designer generated code which contains such declarations.

# re: ASP.NET MVC Framework (Part 1)

Wednesday, December 26, 2007 3:43 PM by Troy

In a nutshell, right-click your web site project and select "Convert to Web Application".

Many thanks to another reader for identifying this fix:

weblogs.asp.net/.../asp-net-3-5-extensions-ctp-preview-released.aspx

# re: ASP.NET MVC Framework (Part 1)

Friday, December 28, 2007 11:50 PM by PM

Hi Scott,

Thank you very much for the detailed explanation on MVC, MVC internals and its working flow. I could able to successfully complete all the approaches that you have mentioned above, except the last approach "Rendering Approach 2: Using Server Side Controls". When I tried to run with the inline statement as mentioned in the "Rendering Approach 2: Using Server Side Controls" <%# Html.ActionLink(Eval("CategoryName"),new {action="List", category=Eval("CategoryName")}) %> I got a compiler error message "The best overloaded method match for 'System.Web.Mvc.HtmlHelper.ActionLink(string, string)' has some invalid arguments" so to fix this I have converted the first eval into a string such as:

<%# Html.ActionLink(Eval("CategoryName").ToString(),new {action="List", category=Eval("CategoryName")}) %> but after this I found that all the category URL's are pointing to the same URL (/products/List) so I had to change the "category" to "Id" in the second argument(values) to get the correct category URL.

Happy Holidays!

PM

# re: ASP.NET MVC Framework (Part 1)

Saturday, December 29, 2007 5:11 PM by Wolfgang

Hi Scott!

Thanks for this great sample! I try to follow it, but ran into a minor problem (besides the already mentioned .ToString-issue..)

The "Categories" action uses Html.ActionLink to produce the correct action links. The problem is with "Grains/Cereals" and "Meat/Poultry", where the slash obviously should not be processed by the routing-engine... if i follow the link to "Products/List/Meat/Poultry" it resuls in an error.

What can be done about this?

Kind regards,

Wolfgang

# Andy Gibson &raquo; ASP.NET MVC Framework

Wednesday, January 02, 2008 2:20 PM by Andy Gibson » ASP.NET MVC Framework

Pingback from  Andy Gibson &raquo; ASP.NET MVC Framework

# MVC Server Control Code Behind Problem &laquo; JAK

Wednesday, January 02, 2008 5:20 PM by MVC Server Control Code Behind Problem « JAK

Pingback from  MVC Server Control Code Behind Problem &laquo; JAK

# re: ASP.NET MVC Framework (Part 1)

Thursday, January 03, 2008 5:04 PM by BJ

You did a better job of explaining MVC then "the other guy".  I missed the link between the database model and the Data Context class. Is the assumption that if the name of my database model is Northwind.dbml then the Data Context class will be NorthwindDataContext.cs? Or is there preprocessor somewhere that makes that link?

TIA

# ASP.NET MVC Test &laquo; JAK

Friday, January 04, 2008 1:08 AM by ASP.NET MVC Test « JAK

Pingback from  ASP.NET MVC Test &laquo; JAK

# ASP.NET MVC框架(第一部分)

Friday, January 04, 2008 2:00 AM by michaelmin1976

轉載自blog.joycode.com/.../111385.aspx

ASP.NETMVC框架(第一部分)

【原文地址】ASP.N...

# ASP.NET MVC Framework &laquo; Projeto Final - Leandro Silveira Prado

Pingback from  ASP.NET MVC Framework  &laquo; Projeto Final - Leandro Silveira Prado

# MVC (ASP.NET 3.5 Extensions CTP)

Tuesday, January 08, 2008 9:42 AM by Danny Douglass

MVC (ASP.NET 3.5 Extensions CTP)

# ASP.NET MVC, WCF Services and Beyond

Friday, January 11, 2008 9:51 AM by Software Development

Yesterday I attended an MSDN Event that covered an assortment of pretty cool topics (IIS 7, ASP.NET Administration...

# Pascal&#8217;s blog &raquo; Blog Archive &raquo; ASP.NET MVC Framework - Links

Pingback from  Pascal&#8217;s blog  &raquo; Blog Archive   &raquo; ASP.NET MVC Framework - Links

# re: ASP.NET MVC Framework (Part 1)

Friday, January 11, 2008 11:57 PM by Erol

Very nice article. Informative, objective, and very much direct to the point.

# re: ASP.NET MVC Framework (Part 1)

Saturday, January 12, 2008 5:39 AM by Balachander Agoramurthy

This framework will surely be very useful to all of us!

# Experiencing ASP.NET MVC - Day 1 &laquo; maonet technotes

Tuesday, January 15, 2008 10:44 AM by Experiencing ASP.NET MVC - Day 1 « maonet technotes

Pingback from  Experiencing ASP.NET MVC -  Day 1 &laquo; maonet technotes

# MVC for ASP.Net

Sunday, January 20, 2008 10:36 PM by Corporate Coder

I&#39;m a little late to the party on this, but Microsoft is going to release their MVC for ASP.NET.

# ASP.NET MCV Framework - first impression

Tuesday, January 22, 2008 10:13 PM by Rediscovering the Obvious

I've read the lengthy articles that Guthrie posted, and I've followed the buzz with interest, but tonight

# ASP.NET MVC Framework &laquo; &lt;life:blog ID=&ldquo;tfx&#8221; runat=&ldquo;server&#8221; /&gt;

Pingback from  ASP.NET MVC Framework &laquo; &lt;life:blog ID=&ldquo;tfx&#8221; runat=&ldquo;server&#8221; /&gt;

# Scott的ASP.net MVC框架系列文章之一

Saturday, February 02, 2008 12:54 AM by Drummer

ASP.NET MVC框架系列文章之一。概述。

# MVC Can Pack a Room

Thursday, February 07, 2008 8:53 AM by My Blog On .NET

MVC Can Pack a Room

# Thoughts on ASP.NET's New MVC Framework

Thursday, February 07, 2008 11:15 AM by Jeff Prosise's Blog

I took a break from Silverlight to spend some time with Microsoft's new ASP.NET MVC framework. It's one

# MVC Framework and Unit Test

Friday, February 08, 2008 6:17 PM by Henry Cordes, My thoughts exactly...

MVC Framework and Unit Test

# Messing with MVC

Saturday, February 09, 2008 12:17 AM by ChrisRisner.com

Messing with MVC

# [轉]ASP.NET MVC Framework 嚐鮮小試

Monday, February 18, 2008 11:05 AM by 星輝

原出處:ccBoy's(小氣的神)BLOG

# ASP.NET MVC Framework Link collection

Tuesday, February 19, 2008 2:04 AM by Community Blogs

Microsoft will release it&#39;s Model view controller base framework for asp.net. In this user will have

# MVP Insider - Q & A with Laurent Duveau

Wednesday, February 20, 2008 4:50 PM by Canadian Developers

Laurent Duveau is a Senior .NET Trainer/Developer and the founding partner of RunAtServer Consulting

# shepherdweb.com &raquo; ASP.NET MVC Presentation Notes &#187; Shane Shepherd: web design and development; music

Pingback from  shepherdweb.com  &raquo; ASP.NET MVC Presentation Notes &#187; Shane Shepherd: web design and development; music

# ASP.NET MVC - Not all it&#8217;s cracked up to be&#8230; &laquo; Interneth3ro&#8217;s Tech Blog

Pingback from  ASP.NET MVC - Not all it&#8217;s cracked up to be&#8230; &laquo; Interneth3ro&#8217;s Tech Blog

# MSDN Blog Postings &raquo; Introduction to ASP.NET MVC Framework

Pingback from  MSDN Blog Postings  &raquo; Introduction to ASP.NET MVC Framework

# ASP.NET MVC Framework Tutorials &laquo; Irfan Syahputra

Thursday, March 06, 2008 1:30 AM by ASP.NET MVC Framework Tutorials « Irfan Syahputra

Pingback from  ASP.NET MVC Framework Tutorials &laquo; Irfan Syahputra

# .NET Developers Heaven: Mix 08 Information Overload!

Friday, March 07, 2008 4:30 PM by Corey Gaudin

As a .NET developer, I am sure most of you have been keeping up with this years Mix &#39;08. There are

# php code and scripts &raquo; Blog Archive &raquo; ASP.NET MVC Framework (Part 1)

Pingback from  php code and scripts  &raquo; Blog Archive   &raquo; ASP.NET MVC Framework (Part 1)

# TechDays 2008 – 3º Dia

Monday, March 17, 2008 9:11 PM by Miguel Isidoro

HTML Source EditorWord wrap Decorreu na passada semana entre os dias 12 e 14 de Mar&ccedil;o a edi&ccedil;&atilde;o

# ASP.NET MVC框架(第一部分)

Saturday, March 29, 2008 1:54 AM by EasyData

【原文地址】ASP.NETMVCFramework(Part1)【原文發表日期】Tuesday,November13,20073:45AM

兩個星期前,我在博客裏討論了ASP...

# baseplane - technology platforms &raquo; Is PureMVC the Cross Platform Baseplane MVC Toolkit You Have Been Looking For? &raquo; baseplane - technology platforms

Pingback from  baseplane - technology platforms    &raquo; Is PureMVC the Cross Platform Baseplane MVC Toolkit You Have Been Looking For?  &raquo;  baseplane - technology platforms

# [轉自大牛Scott]ASP.NET MVC框架(第一部分)

Sunday, March 30, 2008 10:09 AM by 菩提樹下的楊過

原文地址:blog.joycode.com/.../111385.aspx ASP.NETMVC框架(第一部分) ...

# ASP.NET MVC Framework

Monday, March 31, 2008 12:26 PM by DimitriC

Scott Guthrie has a series of blogposts on the ASP.NET MVC Framework: part 1 part 2 (URL Routing) part

# Ajax with the ASP.NET MVC Framework

Saturday, April 05, 2008 9:12 AM by zengshmin

This post presents a few basic Ajax features (similar to partial rendering and behaviors in terms of concepts) running on top of the ASP.NET MVC framework... some early ideas, experimentation and app-building results.

# ASP .NET 3.5 extensions are out the door!

Sunday, May 18, 2008 9:50 PM by IKeeter

With the 3.5 extensions out the door, that means that a lot great stuff is going to be happening on the blogs. I hope to do a video soon on Test Driven Development and Dependency Injection based on a great post by Phil Haack . In mean time, let me see

# Novigo blog &raquo; Blog Archive &raquo; ASP.NET MVC Framework

Pingback from  Novigo blog  &raquo; Blog Archive   &raquo; ASP.NET MVC Framework

# The ASP.NET MVC Information Portal

Tuesday, June 17, 2008 6:57 AM by The ASP.NET MVC Information Portal

Pingback from  The ASP.NET MVC Information Portal

<script type="text/javascript"> // </script> <script type="text/javascript"> // </script> <script type="text/javascript"> // </script> <script type="text/javascript"> // </script> <script type="text/javascript"> // </script>
id="_syncFrame" style="DISPLAY: none; Z-INDEX: -1; VISIBILITY: hidden; WIDTH: 1px; HEIGHT: 1px" src="http://analytics.live.com/Sync.html?V=3486">
發佈了128 篇原創文章 · 獲贊 0 · 訪問量 21萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章