+ All Categories
Home > Documents > Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0...

Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0...

Date post: 21-Aug-2020
Category:
Upload: others
View: 1 times
Download: 0 times
Share this document with a friend
26
Transcript
Page 1: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET
Page 2: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Stephen WaltherSenior Program ManagerMicrosoft

Page 3: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Overview of this Talk

What is ASP.NET MVC?

Build a Contact Manager Application

Page 4: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

What is ASP.NET MVC?

Microsoft’s Newest Framework for Building Web Applications

ASP.NET MVC 1.0 Released During MIX (about two months ago)

Page 5: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

What is ASP.NET MVC?

ASP.NET Framework

.NET Framework

ASP.NET Web Forms

ASP.NET MVC

ASP.NETAJAX

ASP.NETDynamic Data

Page 6: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

What is ASP.NET MVC?

ModelBusiness and Data Access Logic

ViewView logic

ControllerApplication flow logic

Page 7: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

What is ASP.NET MVC?

Invented in 1978 for Smalltalk by Trygve Reenskaug

Page 8: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

What is ASP.NET MVC?

Used by lots of frameworks includingStruts

Tapestry

Spring

Ruby on Rails

Merb

Monorail

Django

Page 9: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

What is ASP.NET MVC?

Enables you to build applications that are resilient to change:

Build Loosely Coupled Applications

Build Testable Applications

Page 10: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Build a Contact Manager Application

Walkthrough #1

Build Create, Read, Update, Delete actions

Page 11: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Build a Contact Manager Application

Walkthrough #2

Use the default model binder

Page 12: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Build a Contact Manager Application

Walkthrough #3

Add simple validation

Page 13: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Build a Contact Manager Application

Walkthrough #4

Refactor using software design patterns

Page 14: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Software Design Patterns

Controller LayerApplication flow control

Service LayerBusiness logic (validation logic)

Repository LayerData access logic

Page 15: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Build a Contact Manager Application

Walkthrough #5

Create unit tests

Page 16: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Test-Driven Development

Test-Driven Development is a software design methodology:

Red – Create a failing test

Green – Write just enough code to pass the test

Refactor – Improve the design of your code

Page 17: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Test-Driven Development

Benefits:Keeps you focused on the right task:

YAGNI (You Ain’t Gonna Need It)

KISS (Keep It Simple Stupid)

Continuous FeedbackTake short steps and get continuous feedback that you are on the right path.

Incremental DesignDesign becomes part of the development process instead of something done by an architect

Page 18: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Build a Contact Manager Application

Walkthrough #6

Add Ajax

Page 19: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Summary

ASP.NET MVC enables you to build loosely-coupled, highly-testable web applications that can be easily modified over time.

Page 20: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Resources

www.ASP.net/mvc -- The official Microsoft website for all things ASP.NET MVC

StephenWalther.com – My blog on ASP.NET MVC

Haacked.com – Phil Haack is the Program Manager for ASP.NET MVC

Page 21: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Table Format

Table TitleColumn 1 Column 2 Column 3 Column 4 Column 5

Page 22: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET
Page 24: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Related Content

Breakout Sessions (session codes and titles)

Interactive Theater Sessions (session codes and titles)

Hands-on Labs (session codes and titles)

Hands-on Labs (session codes and titles)

Page 25: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

Track Resources

Resource 1

Resource 2

Resource 3

Resource 4

Page 26: Stephen Walther Microsoftdownload.microsoft.com/download/F/4/3/F43A79B1-707... · ASP.NET MVC 1.0 Released During MIX (about two months ago) What is ASP.NET MVC? ASP.NET Framework.NET

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


Recommended