1 / 35

ASP.NET MVC

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

emily
Download Presentation

ASP.NET MVC

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ASP.NET MVC Scott Hanselman Senior Program Manager Microsoft

  2. Hello Cheesy demo Scott Hanselman Senior Program Manager Microsoft

  3. 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

  4. 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

  5. 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

  6. 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

  7. 3 Circles

  8. 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

  9. What is MVC? Step 1 Incoming request directed to Controller Controller Request

  10. What is MVC? Step 2 Controller processes request and forms a data Model Controller Model

  11. What is MVC? Step 3 Model is passed to View Controller View

  12. What is MVC? Step 4 View transforms Model into appropriate output format Controller View

  13. What is MVC? Step 5 Response is rendered Controller View Response

  14. Request Lifecycle demo Scott Hanselman Senior Program Manager Microsoft

  15. Routing demo Scott Hanselman Senior Program Manager Microsoft

  16. Extensibility • Views • Controllers • Models • Routes …are all Pluggable

  17. 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.

  18. 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>

  19. 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" })

  20. 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

  21. TDD demo Scott Hanselman Senior Program Manager Microsoft

  22. Complete (ish) Application demo Scott Hanselman Senior Program Manager Microsoft

  23. 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

  24. Choosing Between The Two

  25. 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

  26. 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

  27. Is ASP.NET MVCReady for Release?

  28. Q & A

  29. 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!

  30. Resources for Developers http://www.asp.net http://www.silverlight.net http://www.msdn.com http://www.microsoft.com/teched

  31. 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

  32. Please complete an • evaluation

  33. Be well,write good code,and stay in touchscottha@microsoft.comhttp://hanselman.com

  34. © 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.

More Related