SlideShare a Scribd company logo
rev 1.0/0111Getting Started withASP.NET MVC 3 and RazorDan Wahlinhttp://www.TheWahlinGroup.com
Contact InfoBloghttp://weblogs.asp.net/dwahlinTwitter@DanWahlinEmail:dwahlin@theWahlinGroup.com
rev 1.0/0111AgendaThe MVC PatternASP.NET MVC 3Getting Started with RazorDemos
NO!
MVC Pattern - A Conceptual ViewDecouples the backend business logic from the  front endModelBinds the model and view together and selects which view to display nextData TransferRequestControllerBusiness InteractionLayerUser InteractionLayerViewResponseVisualizes the application data supplied by the model
ModelHas business/domain logicASP.NET MVC doesn’t tell you what to use:LINQ to SQLnHiberateEntity FrameworkPLINQOCustom/POCO objectrev 1.0/0111
ViewShould be “thin” and dumbNo business logicOnly Display logic / Transformation of dataJavaScript is valid for client side - jQueryrev 1.0/0111
ControllerShould also be "thin"Controller has "Actions"Requests always come through the controllerDecides what data is neededTells which View to renderTells the View what "Model" renderrev 1.0/0111
rev 1.0/0111AgendaThe MVC PatternASP.NET MVC 3Getting Started with RazorDemos
What is ASP.NET MVC?ASP.NET MVC implements the Model-View-Controller patternProvides an alternative to ASP.NET Web FormsAvailable from http://www.asp.net/mvc/mvc3rev 1.0/0111INTRODUCTION-10
Goals of ASP.NET MVC Frameworkrev 1.0/0111Clean url schemes (think SEO)
Support existing ASP.NET runtime features
100% control over rendered HTML
Testable by default (built with TDD in mind)
Support third-party view engines
Support static and dynamic languages
Auto-mapping of form variables to object properties
Built-in validation supportKey ASP.NET MVC 3 FeaturesRazor View Engine.cshtml extensionDynamic ViewBag PropertyGlobal FiltersJSON binding for Action ParametersEnhanced .NET 4 Validation SupportUnobtrusive JavaScript for validationLayout PagePartial-Page Output CachingSupport for Dependency Injectionrev 1.0/0111
ASP.NET MVC 3 Project StructureINTRODUCTION-13ControllersRazor Pages (Views)Model Classes"Master Page"rev 1.0/0111
Steps to use ASP.NET MVCCreate a controller class in the Controllers folderAdd one or more Actions (methods) into the controllerRight-click on an Action and select Add View from the menurev 1.0/0111
rev 1.0/0111AgendaThe MVC PatternASP.NET MVC 3Getting Started with RazorDemos
What is Razor?ASP.NET MVC 3 ships with a new View Engine called "Razor"Less markup transitions as compared to the ASP.NET Web Forms View EngineProvides a compact way to mingle code with markupUses the @ characterrev 1.0/0111
Without Razor<ul><%foreach (varcust in Customers) { %>	     <li><%: cust.Name%></li><% } %></ul>rev 1.0/0111
With Razor<ul>	@foreach (varcust in Customers) {	     <li>@cust.Name</li>	} </ul>rev 1.0/0111
Razor FundamentalsRazor provides a compact syntax for mixing "code" with markup:rev 1.0/0111

More Related Content

PPT
Silver Light By Nyros Developer
Nyros Technologies
 
PPTX
ASP .Net MVC 5
Nilachal sethi
 
PPTX
SoftServe - "ASP.NET MVC як наступний крок у розвитку технології розробки Web...
SoftServe
 
PPT
ASP.net MVC CodeCamp Presentation
buildmaster
 
PPT
MSDN - ASP.NET MVC
Maarten Balliauw
 
PDF
ASP.NET MVC 3
Buu Nguyen
 
PPT
MVC Architecture in ASP.Net By Nyros Developer
Nyros Technologies
 
PPTX
ASP.NET MVC for Begineers
Shravan Kumar Kasagoni
 
Silver Light By Nyros Developer
Nyros Technologies
 
ASP .Net MVC 5
Nilachal sethi
 
SoftServe - "ASP.NET MVC як наступний крок у розвитку технології розробки Web...
SoftServe
 
ASP.net MVC CodeCamp Presentation
buildmaster
 
MSDN - ASP.NET MVC
Maarten Balliauw
 
ASP.NET MVC 3
Buu Nguyen
 
MVC Architecture in ASP.Net By Nyros Developer
Nyros Technologies
 
ASP.NET MVC for Begineers
Shravan Kumar Kasagoni
 

What's hot (20)

PPTX
Head first asp.net mvc 2.0 rtt
Lanvige Jiang
 
PPTX
What's new in asp.net mvc 4
Simone Chiaretta
 
PPT
ASP.NET MVC Presentation
ivpol
 
PPS
Introduction To Mvc
Volkan Uzun
 
PPT
MVC ppt presentation
Bhavin Shah
 
PPTX
Getting started with MVC 5 and Visual Studio 2013
Thomas Robbins
 
PPT
MVC From Beginner to Advance in Indian Style by - Indiandotnet
Indiandotnet
 
PPTX
Advanced MVC3
shobokshi
 
PPTX
Introduction to ASP.NET MVC
Khaled Musaied
 
PPT
Asp.net mvc
Naga Harish M
 
KEY
Introduction to ASP.NET MVC
LearnNowOnline
 
PPT
Model View Controller
urs_tush
 
PPTX
ASP .NET MVC
eldorina
 
PPTX
Tightly coupled view (model bounded view)
IT PROGRAMMING WORLD
 
PPT
Future ASP.NET features for UID / HTML developers
Mark Everard
 
PPTX
ASP.NET MVC 5 - EF 6 - VS2015
Hossein Zahed
 
PPTX
Asp.net mvc presentation by Nitin Sawant
Nitin S
 
PPT
Building a MVC eCommerce Site in Under 5 Minutes
Gaines Kergosien
 
PPT
Developing great applications using ASP.NET MVC and ASP.NET AJAX
Tatham Oddie
 
PPTX
Introduction To ASP.Net MVC
Joe Wilson
 
Head first asp.net mvc 2.0 rtt
Lanvige Jiang
 
What's new in asp.net mvc 4
Simone Chiaretta
 
ASP.NET MVC Presentation
ivpol
 
Introduction To Mvc
Volkan Uzun
 
MVC ppt presentation
Bhavin Shah
 
Getting started with MVC 5 and Visual Studio 2013
Thomas Robbins
 
MVC From Beginner to Advance in Indian Style by - Indiandotnet
Indiandotnet
 
Advanced MVC3
shobokshi
 
Introduction to ASP.NET MVC
Khaled Musaied
 
Asp.net mvc
Naga Harish M
 
Introduction to ASP.NET MVC
LearnNowOnline
 
Model View Controller
urs_tush
 
ASP .NET MVC
eldorina
 
Tightly coupled view (model bounded view)
IT PROGRAMMING WORLD
 
Future ASP.NET features for UID / HTML developers
Mark Everard
 
ASP.NET MVC 5 - EF 6 - VS2015
Hossein Zahed
 
Asp.net mvc presentation by Nitin Sawant
Nitin S
 
Building a MVC eCommerce Site in Under 5 Minutes
Gaines Kergosien
 
Developing great applications using ASP.NET MVC and ASP.NET AJAX
Tatham Oddie
 
Introduction To ASP.Net MVC
Joe Wilson
 
Ad

Viewers also liked (20)

PPT
mach3
leo
 
PPTX
Development Trends - What's New in the World of Web Development
Dan Wahlin
 
PPTX
Integrating Security Roles into Microsoft Silverlight Applications
Dan Wahlin
 
PPTX
Building an End-to-End AngularJS Application
Dan Wahlin
 
PPTX
Building AngularJS Custom Directives
Dan Wahlin
 
PPT
Top 13 Web Development Trends And Predictions For 2015
Grey Matter India Technologies PVT LTD
 
PDF
Lastest Trends in Web Development
Doris Chen
 
PPTX
Introduction to ASP.Net Mvc3 with Razor
Manoj Kumar
 
PPTX
ASP.NET MVC Tips, Tricks and Hidden Gems
Shay Friedman
 
PPTX
JavaScript Patterns to Cleanup your Code
Dan Wahlin
 
PPT
Using jQuery Templates
Dan Wahlin
 
PPTX
AngularJS in 60ish Minutes
Dan Wahlin
 
PDF
The Big Comparison of ASP.NET MVC View Engines
Shay Friedman
 
PPTX
Building the an End-to-End ASP.NET MVC 4, Entity Framework, HTML5, jQuery app...
Dan Wahlin
 
PDF
jQuery in 10 minuten
Anne Jan Roeleveld
 
PPTX
Basics of angular directive (Part - 1)
Vijay Kani
 
PDF
AngularJS Custom Directives
yprodev
 
PDF
Custom AngularJS Directives
yprodev
 
PPTX
New microsoft office power point presentation
DiyAshraF
 
DOCX
Actividad estadistica
Jacqueline Pérez Maragaño
 
mach3
leo
 
Development Trends - What's New in the World of Web Development
Dan Wahlin
 
Integrating Security Roles into Microsoft Silverlight Applications
Dan Wahlin
 
Building an End-to-End AngularJS Application
Dan Wahlin
 
Building AngularJS Custom Directives
Dan Wahlin
 
Top 13 Web Development Trends And Predictions For 2015
Grey Matter India Technologies PVT LTD
 
Lastest Trends in Web Development
Doris Chen
 
Introduction to ASP.Net Mvc3 with Razor
Manoj Kumar
 
ASP.NET MVC Tips, Tricks and Hidden Gems
Shay Friedman
 
JavaScript Patterns to Cleanup your Code
Dan Wahlin
 
Using jQuery Templates
Dan Wahlin
 
AngularJS in 60ish Minutes
Dan Wahlin
 
The Big Comparison of ASP.NET MVC View Engines
Shay Friedman
 
Building the an End-to-End ASP.NET MVC 4, Entity Framework, HTML5, jQuery app...
Dan Wahlin
 
jQuery in 10 minuten
Anne Jan Roeleveld
 
Basics of angular directive (Part - 1)
Vijay Kani
 
AngularJS Custom Directives
yprodev
 
Custom AngularJS Directives
yprodev
 
New microsoft office power point presentation
DiyAshraF
 
Actividad estadistica
Jacqueline Pérez Maragaño
 
Ad

Similar to Getting Started with ASP.NET MVC 3 and Razor (20)

PPTX
Introduction to mvc architecture
ravindraquicsolv
 
PPTX
Technoligent providing custom ASP.NET MVC development services
Aaron Jacobson
 
PPTX
MVC First Basic
Shyam Sir
 
PPTX
Asp.Net MVC Intro
Stefano Paluello
 
PPTX
Asp.netmvc handson
Prashant Kumar
 
ODP
Mvc
abhigad
 
PPTX
Simple mvc4 prepared by gigin krishnan
Gigin Krishnan
 
PPT
Asp.net mvc
Phuc Le Cong
 
PPTX
Which is better asp.net mvc vs asp.net
Concetto Labs
 
PPTX
ASP.NET MVC 3
joselinoneto
 
PPT
ASP.NET MVC introduction
Tomi Juhola
 
PPTX
MVC 4
Vasilios Kuznos
 
PPT
MVC
akshin
 
PPTX
Mvc
Furqan Ashraf
 
PPT
CTTDNUG ASP.NET MVC
Barry Gervin
 
PDF
MVC Interview Questions PDF By ScholarHat
Scholarhat
 
PPTX
ASP.NET MVC Fundamental
ldcphuc
 
PDF
Build your website with angularjs and web apis
Chalermpon Areepong
 
PPTX
ASP.NET MVC Presentation
Volkan Uzun
 
PPT
Asp.net,mvc
Prashant Kumar
 
Introduction to mvc architecture
ravindraquicsolv
 
Technoligent providing custom ASP.NET MVC development services
Aaron Jacobson
 
MVC First Basic
Shyam Sir
 
Asp.Net MVC Intro
Stefano Paluello
 
Asp.netmvc handson
Prashant Kumar
 
Mvc
abhigad
 
Simple mvc4 prepared by gigin krishnan
Gigin Krishnan
 
Asp.net mvc
Phuc Le Cong
 
Which is better asp.net mvc vs asp.net
Concetto Labs
 
ASP.NET MVC 3
joselinoneto
 
ASP.NET MVC introduction
Tomi Juhola
 
MVC
akshin
 
CTTDNUG ASP.NET MVC
Barry Gervin
 
MVC Interview Questions PDF By ScholarHat
Scholarhat
 
ASP.NET MVC Fundamental
ldcphuc
 
Build your website with angularjs and web apis
Chalermpon Areepong
 
ASP.NET MVC Presentation
Volkan Uzun
 
Asp.net,mvc
Prashant Kumar
 

Recently uploaded (20)

PDF
A Strategic Analysis of the MVNO Wave in Emerging Markets.pdf
IPLOOK Networks
 
PPTX
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
PDF
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
PDF
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
PPTX
IoT Sensor Integration 2025 Powering Smart Tech and Industrial Automation.pptx
Rejig Digital
 
PDF
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
PDF
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
PDF
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 
PDF
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PPTX
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
PDF
Doc9.....................................
SofiaCollazos
 
PDF
REPORT: Heating appliances market in Poland 2024
SPIUG
 
PDF
This slide provides an overview Technology
mineshkharadi333
 
PDF
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
PDF
Beyond Automation: The Role of IoT Sensor Integration in Next-Gen Industries
Rejig Digital
 
PDF
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
A Strategic Analysis of the MVNO Wave in Emerging Markets.pdf
IPLOOK Networks
 
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
IoT Sensor Integration 2025 Powering Smart Tech and Industrial Automation.pptx
Rejig Digital
 
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
Doc9.....................................
SofiaCollazos
 
REPORT: Heating appliances market in Poland 2024
SPIUG
 
This slide provides an overview Technology
mineshkharadi333
 
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
Beyond Automation: The Role of IoT Sensor Integration in Next-Gen Industries
Rejig Digital
 
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 

Getting Started with ASP.NET MVC 3 and Razor

Editor's Notes

  • #4: There have been a lot of rumors floating around that ASP.NET Web Forms is dying and being replaced with ASP.NET MVC…you know, like the Web Forms Reaper is coming? Well….here I am!
  • #6: It is up to you to decide how you want to get your data and how to define your objects. Although there are accepted guidelines on how to have good design, it is not decided for you with The ASP.Net MVC Framework.