350 likes | 481 Views
ASP.NET MVC. Scott Hanselman Senior Program Manager Microsoft. Hello Cheesy. demo. Scott Hanselman Senior Program Manager Microsoft. What’s the Point?. This is not Web Forms 4.0 It’s about alternatives. Car vs. Motorcycle. Flexible Extend it. Or not. Fundamental
E N D
ASP.NET MVC Scott Hanselman Senior Program Manager Microsoft
Hello Cheesy demo Scott Hanselman Senior Program Manager Microsoft
What’s the Point? • This is not Web Forms 4.0 • It’s about alternatives. Car vs. Motorcycle. • Flexible • Extend it. Or not. • Fundamental • Part of System.Web and isn’t going anywhere. • Plays Well With Others • Feel free to use NHibernate for Models, Brail for Views and Whatever for Controllers. • Keep it simple and DRY
Goodness – Driving Goals • Maintain Clean Separation of Concerns • Easy Testing • Red/Green TDD • Highly maintainable applications by default • Extensible and Pluggable • Support replacing any component of the system
Goodness – Driving Goals • Enable clean URLs and HTML • SEO and REST friendly URL structures • Great integration within ASP.NET • All the same providers still work • Membership, Session, Caching, etc. • ASP.NET Designer Surface in VS2008
It’s still ASP.NET • Providers still work • Membership, Caching, Session, etc. • Views leverage .aspx and .ascx • But they don’t have to if you don’t want them to • Within System.Web namespace • Feature Sharing
A Little More Detail • Browser requests /Products/ • Route is determined • Controller is activated • Method on Controller is invoke • Controller does some stuff • Renders View, passing in custom ViewData • URLs are rendered, pointing to other Controllers
What is MVC? Step 1 Incoming request directed to Controller Controller Request
What is MVC? Step 2 Controller processes request and forms a data Model Controller Model
What is MVC? Step 3 Model is passed to View Controller View
What is MVC? Step 4 View transforms Model into appropriate output format Controller View
What is MVC? Step 5 Response is rendered Controller View Response
Request Lifecycle demo Scott Hanselman Senior Program Manager Microsoft
Routing demo Scott Hanselman Senior Program Manager Microsoft
Extensibility • Views • Controllers • Models • Routes …are all Pluggable
ViewEngines • View Engines render output • You get WebForms by default • Can implement your own • MVCContrib has ones for Brail, Nvelocity • NHaml is an interesting one to watch • View Engines can be used to • Offer new DSLs to make HTML easier • Generate totally different mime/types • Images, RSS, JSON, XML, OFX, VCards, whatever.
Views <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" AutoEventWireup="true" CodeBehind="List.aspx" Inherits="MvcApplication5.Views.Products.List" Title="Products" %> <asp:ContentContentPlaceHolderID="MainContentPlaceHolder" runat="server"> <h2><%= ViewData.CategoryName %></h2> <ul> <% foreach (var product in ViewData.Products) { %> <li> <%= product.ProductName %> <div class="editlink"> (<%= Html.ActionLink("Edit", new { Action="Edit", ID=product.ProductID })%>) </div> </li> <% } %> </ul> <%= Html.ActionLink("Add New Product", new { Action="New" }) %> </asp:Content>
NHaml – Extreme Views %h2= ViewData.CategoryName%ul - foreach (var product in ViewData.Products) %li = product.ProductName .editlink = Html.ActionLink("Edit", new { Action="Edit", ID=product.ProductID }) = Html.ActionLink("Add New Product", new { Action="New" })
Testing Controller Actions • No requirement to test within ASP.NET runtime. • Use Moq or RhinoMocks or TypeMock • Create Test versions of the parts of the runtime you want to stub
TDD demo Scott Hanselman Senior Program Manager Microsoft
Complete (ish) Application demo Scott Hanselman Senior Program Manager Microsoft
What’s the Point? • This is not Web Forms 4.0 • It’s about alternatives. Car vs. Motorcycle. • Flexible • Extend it. Or not. • Fundamental • Part of System.Web and isn’t going anywhere. • Plays Well With Others • Feel free to use NHibernate for Models, Brail for Views and Whatever for Controllers. • Keep it simple and DRY
You Might be an MVC if… With Apologies to Jeff Foxworthy • You want full control over markup • You want a framework that enforces separation of concerns • TDD/Unit Testing is a priority for you • Control abstractions get in your way more than they help • You like writing Javascript
You Might be a WebForm if… With Apologies to Jeff Foxworthy • You like programming against controls that encapsulate UI and logic • You like the WYSWIG designer and would rather avoid angle brackets • You like keeping logic on the server rather than hand writing Javascript
Resources • www.microsoft.com/teched Tech·TalksTech·Ed Bloggers Live Simulcasts Virtual Labs • http://microsoft.com/technet • Evaluation licenses, pre-released products, and MORE! • http://microsoft.com/msdn Developer’s Kit, Licenses, and MORE!
Resources for Developers http://www.asp.net http://www.silverlight.net http://www.msdn.com http://www.microsoft.com/teched
ASP.NET Community – www.asp.net • Great Learning Content • 219 Videos, 83 Tutorials, Starter Kits,Webcasts, Podcasts, suggested Books • Questions? Need an Answer (Forums) • Over 132,000 new questions a year • 72% answered within 7-days • Stay up-to-date with Blogs • Download the latest alphas, betas, and releases • Participate, Contribute, Summit, Learn • ASP.NET Wiki, Control Gallery
Please complete an • evaluation
Be well,write good code,and stay in touchscottha@microsoft.comhttp://hanselman.com
© 2008 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.