SlideShare a Scribd company logo
MVC with Kentico 8
Thomas Robbins
Radek Pribyl
Introduction to MVC
Thomas Robbins
thomasr@Kentico.com
A history lesson..
ASP.NET Web Form
• A set of UI components
(pages, buttons etc.)
plus a stateful object
oriented GUI
programming model
ASP.NET
• A way to host .NET
application in IIS that let’s
you interact with HTTP
requests and responses
.NET
• A multi-language managed
code platform
The Strength of ASP.NET Web Forms
• Making web development feel the
same as Windows Form development
• No need to work with individual HTTP
requests and easier to think in terms
of a stateful UI
Some problems with ASP.NET Web Forms
View state weight – Mechanism for maintaining state (view state) results in large
blocks of data between client and server
Page life cycle – Connecting client side events with server side event handler code
is complicated and delicate
False sense of separation – ASP.NET web Forms code behind model provides a
means to take application code out of HTML markup. Unfortunately, this allows for
mix presentation models (manipulating a server side tree)
Limited control over HTML – Server side controls render themselves as HTML but
not always the HTML you want
Low testability – Nobody could have anticipated that automated testing would
become essential
Not all bad – ASP.NET Web Forms provide a quick
results and allows reasonably complex web
applications to be built quickly!
What matters most…
Code reusability
• Shortens development
• Code libraries
• Design patterns
• Frameworks
Separation of concerns
• Improves code clarity and organization
• Helps troubleshoot by isolating issues
• Allows for multiple teams to develop
simultaneously
What is MVC?
Model represents the data model
• “Manages behavior and data of the
application domain”
View represents the screen shown to
the user
• “Manages the graphical and/or textual
output to the portion of the bitmapped
display that is allocated to the application”
Controller represents interaction
from the user that changes the data
and the view
• “Interprets the mouse and keyboard
inputs from the user, commanding the
model and/or the view to changes as
appropriate”
MVC isn’t new!
Presented by Trygve Reenskaug
in 1979
First used in the Smalltalk-80
framework
• Used in making Apple interfaces
(Lisa and Macintosh)
MVC Step by Step
Getting started with MVC 5
The project structure
• App_Data is the physical store for data. This folder
has the same role as it does in ASP.NET web sites that
use Web Form pages
• Content is the recommended location to add static
content files like CSS and images
• Controllers is the recommended location for
controllers. All controllers must end with “Controller”
• Models is provided for classes that represent the
application model. This folder usually contains code
that defines objects and logic for application with the
data store
• Scripts is the recommended location for script files
that support the application. By default this folder
contains ASP.NET Ajax Foundation files and Jquery
• Views is the recommended location for views. These
are ViewPage (.aspx), ViewUserControl (.ascx) and
ViewMaster (.master) in additional to any other files
needed for renderings. The view folder also contains a
folder for each controller.
MVC
• Easier to Manage Complexity
• Does not use view state or server
based forms
• Rich Routing Structure
• Support for Test-Driven
Development
• Supports Large Teams Well
WebForms
• Preservers State over HTTP
• Page Controller Pattern
• View state or server based forms
• Works well for small teams
• Development is less complex
Everything has it’s advantages
MVC Routes
• A route is an object that parses a requested URL and it
determines the controller and action to which the request is
forwarded
• Routing operates on the directories and the file name of tin the
relative URL
Uses the format
/[Controller]/[ActionName]/[Parameters]
What’s the route
Matching a URL request to a route depends on all of the following conditions:
• The route patterns that you have defined or the default route patterns, if any, that are included
in your project type.
• The order in which you added them to the Routes collection.
• Any default values that you have provided for a route.
• Any constraints that you have provided for a route.
• Whether you have defined routing to handle requests that match a physical file.
MVC in Kentico 8
Radek Pribyl
(Technical leader - Portal engine, MVC)
Installation
Requirements
• .NET Framework 4.5/4.5.1
• Project type – Web application
Configuration
• None
MVC version
• MVC4 included in the Kentico 8 installation
Architecture
Kentico as a content platform
• Data stored in documents and custom tables
MVC renders live site
• Controller, Views – custom implementation
• Manual routing management recommended
MVC handler
Request
Live site
(MVC)
ASPX handler
CMS Core
Kentico Admin
(Web forms)
HTML…
Web application sructure
CMSApp
• Standard Kentico web application project (Web forms)
CMSApp_AppCode
• Contains all the files which you would place into the ASP.NET folder
Old_App_Code (or App_Code in Web site project)
CMSApp_MVC
• MVC4 web application project
• Standard Kentico module – registered in the Kentico application =>
uses API handlers
• Simplifies development
• All the MVC related files belong here
• NewsController + Views examples – used in the Corporate sample site
CMSApp_MVC project
App_Start
• Standard MVC project folder
• RouteConfig.cs
• FilterConfig.cs
CMS_MvcModule
• Connects the project (module) to the Kentico
application
Controllers
• Custom controllers
• Sample controller
Models
• Custom model classes
Views
• Custom views
• Sample views
Development tips #1
Architecture
• Kentico as a content platform
• Live site generated by MVC
Controllers
• Try out new DocumentQuery API
• Implement caching
o MVC caching
o Kentico caching
• When using view location that support Kentico export, return full path of views
Models
• Use Kentico API classes (info objects)
• Is using data containers (TreeNode), create a simplified model class => strongly typed views
Development tips #2
Views
• View engines – no restrictions
• Razor recommended
Routes
• Route registration
o App_Start/RouteConfig.cs – manual export
o Attribute routing
• Avoid using route placeholders at the start of the route: {controller}/{action}/{id}
• Especially when using together with extension-less
• Otherwise use the following route restrictions (solves most of the future possible conflicts with system URLs)
routes.IgnoreRoute("{*allaspx}", new {allaspx=@".*.aspx(/.*)?"});
routes.IgnoreRoute("{*allashx}", new { allashx = @".*.ashx(/.*)?" });
• To improve performance, exclude the URLs defined by your routes from the Kentico rewriting engine
Example
Controller
• Data - DocumentQuery
• No caching
• Location
o Controllers/MvcSampleSite/NewsController.cs
Model
• News document model
• Location
o MvcSampleSite/Model/NewsModel.cs
View
• Strongly typed view
• Using a layout page
• Location
o Views/MvcSampleSite/*
Routes
• Registered news list + news detail routes
o / - news list
o /news/<newsalias> - news detail
• Location
o App_Start/RouteConfig.cs
MVC limitations
MVC Views
• No web parts
• No CMS controls
• Document permissions need to be checked manually
Web parts
• No MVC views
Web forms
(web parts)
MVC
Export/Import
Export
Site objects
• Controllers/<siteName>/*
• Views/<siteName>/*
• <siteName>/*
Global objects
• Controllers/Global/*
• Views/Global/*
Import
• Manually include files into CMSApp_MVC
• Build CMSApp_MVC
MVC upgrade
MVC Upgrade
Remove MVC4 libraries (Lib/MVC/)
NuGet package
• Recommended
• Easier option
• Only latest MVC version
Manual MVC upgrade
• More complicated
• Specific MVC version
Update Kentico MVC library
Update Views/web.config
Rebuild CMSApp_MVC
Resources
Kentico MVC
https://docs.kentico.com/x/qYFG
Upgrade MVC
https://docs.kentico.com/x/UgBcAw
API examples
https://docs.kentico.com/x/VABcAw
Document API
https://docs.kentico.com/x/5oAbAg
Using MVC with Kentico 8

More Related Content

PDF
Kentico and MVC
PPTX
Using the Kentico CMS API
PPTX
4. Introduction to ASP.NET MVC - Part I
PPTX
asp-net.pptx
PDF
Asp 1-mvc introduction
PPSX
Asp.net mvc
PDF
Dot net interview questions and asnwers
PPTX
Introduction to ASP.Net MVC
Kentico and MVC
Using the Kentico CMS API
4. Introduction to ASP.NET MVC - Part I
asp-net.pptx
Asp 1-mvc introduction
Asp.net mvc
Dot net interview questions and asnwers
Introduction to ASP.Net MVC

What's hot (20)

PPTX
Asp.net mvc 5 course module 1 overview
PPTX
Mortal Kombat! ASP.NET MVC vs ASP.NET Webforms – ASP.NET MVC is amazing
PPTX
Mvc framework
PDF
Asp.net mvc basic introduction
PDF
Asp .net web form fundamentals
PPTX
Introduction to ASP.NET MVC
ODP
Mvc
PPTX
Sitecore MVC: Converting Web Forms sublayouts
PDF
MVC Web Application
PPTX
Getting started with MVC 5 and Visual Studio 2013
PPTX
MVC Framework
PPTX
Asp.net mvc presentation by Nitin Sawant
PPT
Introduction to ASP.NET MVC 1.0
PPTX
Sitecore MVC (London User Group, April 29th 2014)
PPTX
ASP .NET MVC
PDF
Asp 1a-aspnetmvc
PPTX
Eloquent workflow: delivering data from database to client in a right way
PPT
.net training | learn .net | Microsoft dot net Course | Microsoft dot net onl...
PPTX
Asp.net With mvc handson
PPT
Asp.net,mvc
Asp.net mvc 5 course module 1 overview
Mortal Kombat! ASP.NET MVC vs ASP.NET Webforms – ASP.NET MVC is amazing
Mvc framework
Asp.net mvc basic introduction
Asp .net web form fundamentals
Introduction to ASP.NET MVC
Mvc
Sitecore MVC: Converting Web Forms sublayouts
MVC Web Application
Getting started with MVC 5 and Visual Studio 2013
MVC Framework
Asp.net mvc presentation by Nitin Sawant
Introduction to ASP.NET MVC 1.0
Sitecore MVC (London User Group, April 29th 2014)
ASP .NET MVC
Asp 1a-aspnetmvc
Eloquent workflow: delivering data from database to client in a right way
.net training | learn .net | Microsoft dot net Course | Microsoft dot net onl...
Asp.net With mvc handson
Asp.net,mvc
Ad

Similar to Using MVC with Kentico 8 (20)

PDF
Aspnetmvc 1
PPTX
ASP.NET Presentation
PPTX
Sitecore MVC: What it is and why it's important
PPTX
MVC patten relate using in. net core latest varsion
PPTX
ASP.NET - Building Web Application..in the right way!
PPTX
ASP.NET - Building Web Application..in the right way!
PPTX
MVC 6 - the new unified Web programming model
PDF
aspnet-core-model view controllers .pdf
PPTX
Fast Track introduction to ASP.NET MVC
PPTX
PDF
Introduction to ASP.NET MVC
PPTX
MVC 6 Introduction
PPTX
Aspnet mvc
PDF
Targeting Mobile Platform with MVC 4.0
PPTX
ASP.net MVC Introduction Wikilogia (nov 2014)
PPTX
Mvc Brief Overview
PPTX
Mvc fundamental
PPTX
Sitecore mvc
PPTX
Session 1
PDF
Asp.Net 3 5 Part 1
Aspnetmvc 1
ASP.NET Presentation
Sitecore MVC: What it is and why it's important
MVC patten relate using in. net core latest varsion
ASP.NET - Building Web Application..in the right way!
ASP.NET - Building Web Application..in the right way!
MVC 6 - the new unified Web programming model
aspnet-core-model view controllers .pdf
Fast Track introduction to ASP.NET MVC
Introduction to ASP.NET MVC
MVC 6 Introduction
Aspnet mvc
Targeting Mobile Platform with MVC 4.0
ASP.net MVC Introduction Wikilogia (nov 2014)
Mvc Brief Overview
Mvc fundamental
Sitecore mvc
Session 1
Asp.Net 3 5 Part 1
Ad

More from Thomas Robbins (20)

PPTX
PlayFab Advanced Cloud Script
PPTX
What’s in the box? Creating chance mechanics and rewards
PPTX
Getting started with Cloud Script
PPTX
Say hello to the new PlayFab!
PPTX
Data-Driven Government: Explore the Four Pillars of Value
PPTX
Financial Transparency Trailblazers
PPTX
Telling Stories with Open Data
PPTX
Socrata Financial Transparency Suite
PPTX
Socrata Service Connect
PPTX
Leveraging Data to Engage Citizens and Drive Innovation
PPTX
Here Comes Kentico 8
PPTX
Say hello to Kentico 8! Your integrated marketing solution has arrived
PPTX
One Size does Not Fit All: Selecting the Right Mobile StrategyKentico mobil...
PPTX
Digital marketing best practices
PPTX
Do you speak digital marketing with Kentico CMS?
PPTX
Common questions for Windows Azure and Kentico CMS
PPTX
Advanced development with Windows Azure
PPTX
Best Practices for Kentico CMS and Windows Azure
PPTX
Deployment options for Kentico CMS on Windows Azure
PPTX
Go…Running Kentico CMS on Windows Azure
PlayFab Advanced Cloud Script
What’s in the box? Creating chance mechanics and rewards
Getting started with Cloud Script
Say hello to the new PlayFab!
Data-Driven Government: Explore the Four Pillars of Value
Financial Transparency Trailblazers
Telling Stories with Open Data
Socrata Financial Transparency Suite
Socrata Service Connect
Leveraging Data to Engage Citizens and Drive Innovation
Here Comes Kentico 8
Say hello to Kentico 8! Your integrated marketing solution has arrived
One Size does Not Fit All: Selecting the Right Mobile StrategyKentico mobil...
Digital marketing best practices
Do you speak digital marketing with Kentico CMS?
Common questions for Windows Azure and Kentico CMS
Advanced development with Windows Azure
Best Practices for Kentico CMS and Windows Azure
Deployment options for Kentico CMS on Windows Azure
Go…Running Kentico CMS on Windows Azure

Recently uploaded (20)

PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Machine learning based COVID-19 study performance prediction
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
Tartificialntelligence_presentation.pptx
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Empathic Computing: Creating Shared Understanding
PDF
Accuracy of neural networks in brain wave diagnosis of schizophrenia
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
Spectroscopy.pptx food analysis technology
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Advanced methodologies resolving dimensionality complications for autism neur...
Building Integrated photovoltaic BIPV_UPV.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
MIND Revenue Release Quarter 2 2025 Press Release
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Per capita expenditure prediction using model stacking based on satellite ima...
The Rise and Fall of 3GPP – Time for a Sabbatical?
Machine learning based COVID-19 study performance prediction
Dropbox Q2 2025 Financial Results & Investor Presentation
MYSQL Presentation for SQL database connectivity
Tartificialntelligence_presentation.pptx
Unlocking AI with Model Context Protocol (MCP)
Empathic Computing: Creating Shared Understanding
Accuracy of neural networks in brain wave diagnosis of schizophrenia
Spectral efficient network and resource selection model in 5G networks
Spectroscopy.pptx food analysis technology
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx

Using MVC with Kentico 8

  • 1. MVC with Kentico 8 Thomas Robbins Radek Pribyl
  • 3. A history lesson.. ASP.NET Web Form • A set of UI components (pages, buttons etc.) plus a stateful object oriented GUI programming model ASP.NET • A way to host .NET application in IIS that let’s you interact with HTTP requests and responses .NET • A multi-language managed code platform The Strength of ASP.NET Web Forms • Making web development feel the same as Windows Form development • No need to work with individual HTTP requests and easier to think in terms of a stateful UI
  • 4. Some problems with ASP.NET Web Forms View state weight – Mechanism for maintaining state (view state) results in large blocks of data between client and server Page life cycle – Connecting client side events with server side event handler code is complicated and delicate False sense of separation – ASP.NET web Forms code behind model provides a means to take application code out of HTML markup. Unfortunately, this allows for mix presentation models (manipulating a server side tree) Limited control over HTML – Server side controls render themselves as HTML but not always the HTML you want Low testability – Nobody could have anticipated that automated testing would become essential Not all bad – ASP.NET Web Forms provide a quick results and allows reasonably complex web applications to be built quickly!
  • 5. What matters most… Code reusability • Shortens development • Code libraries • Design patterns • Frameworks Separation of concerns • Improves code clarity and organization • Helps troubleshoot by isolating issues • Allows for multiple teams to develop simultaneously
  • 6. What is MVC? Model represents the data model • “Manages behavior and data of the application domain” View represents the screen shown to the user • “Manages the graphical and/or textual output to the portion of the bitmapped display that is allocated to the application” Controller represents interaction from the user that changes the data and the view • “Interprets the mouse and keyboard inputs from the user, commanding the model and/or the view to changes as appropriate”
  • 7. MVC isn’t new! Presented by Trygve Reenskaug in 1979 First used in the Smalltalk-80 framework • Used in making Apple interfaces (Lisa and Macintosh)
  • 8. MVC Step by Step
  • 10. The project structure • App_Data is the physical store for data. This folder has the same role as it does in ASP.NET web sites that use Web Form pages • Content is the recommended location to add static content files like CSS and images • Controllers is the recommended location for controllers. All controllers must end with “Controller” • Models is provided for classes that represent the application model. This folder usually contains code that defines objects and logic for application with the data store • Scripts is the recommended location for script files that support the application. By default this folder contains ASP.NET Ajax Foundation files and Jquery • Views is the recommended location for views. These are ViewPage (.aspx), ViewUserControl (.ascx) and ViewMaster (.master) in additional to any other files needed for renderings. The view folder also contains a folder for each controller.
  • 11. MVC • Easier to Manage Complexity • Does not use view state or server based forms • Rich Routing Structure • Support for Test-Driven Development • Supports Large Teams Well WebForms • Preservers State over HTTP • Page Controller Pattern • View state or server based forms • Works well for small teams • Development is less complex Everything has it’s advantages
  • 12. MVC Routes • A route is an object that parses a requested URL and it determines the controller and action to which the request is forwarded • Routing operates on the directories and the file name of tin the relative URL Uses the format /[Controller]/[ActionName]/[Parameters]
  • 13. What’s the route Matching a URL request to a route depends on all of the following conditions: • The route patterns that you have defined or the default route patterns, if any, that are included in your project type. • The order in which you added them to the Routes collection. • Any default values that you have provided for a route. • Any constraints that you have provided for a route. • Whether you have defined routing to handle requests that match a physical file.
  • 14. MVC in Kentico 8 Radek Pribyl (Technical leader - Portal engine, MVC)
  • 15. Installation Requirements • .NET Framework 4.5/4.5.1 • Project type – Web application Configuration • None MVC version • MVC4 included in the Kentico 8 installation
  • 16. Architecture Kentico as a content platform • Data stored in documents and custom tables MVC renders live site • Controller, Views – custom implementation • Manual routing management recommended MVC handler Request Live site (MVC) ASPX handler CMS Core Kentico Admin (Web forms) HTML…
  • 17. Web application sructure CMSApp • Standard Kentico web application project (Web forms) CMSApp_AppCode • Contains all the files which you would place into the ASP.NET folder Old_App_Code (or App_Code in Web site project) CMSApp_MVC • MVC4 web application project • Standard Kentico module – registered in the Kentico application => uses API handlers • Simplifies development • All the MVC related files belong here • NewsController + Views examples – used in the Corporate sample site
  • 18. CMSApp_MVC project App_Start • Standard MVC project folder • RouteConfig.cs • FilterConfig.cs CMS_MvcModule • Connects the project (module) to the Kentico application Controllers • Custom controllers • Sample controller Models • Custom model classes Views • Custom views • Sample views
  • 19. Development tips #1 Architecture • Kentico as a content platform • Live site generated by MVC Controllers • Try out new DocumentQuery API • Implement caching o MVC caching o Kentico caching • When using view location that support Kentico export, return full path of views Models • Use Kentico API classes (info objects) • Is using data containers (TreeNode), create a simplified model class => strongly typed views
  • 20. Development tips #2 Views • View engines – no restrictions • Razor recommended Routes • Route registration o App_Start/RouteConfig.cs – manual export o Attribute routing • Avoid using route placeholders at the start of the route: {controller}/{action}/{id} • Especially when using together with extension-less • Otherwise use the following route restrictions (solves most of the future possible conflicts with system URLs) routes.IgnoreRoute("{*allaspx}", new {allaspx=@".*.aspx(/.*)?"}); routes.IgnoreRoute("{*allashx}", new { allashx = @".*.ashx(/.*)?" }); • To improve performance, exclude the URLs defined by your routes from the Kentico rewriting engine
  • 21. Example Controller • Data - DocumentQuery • No caching • Location o Controllers/MvcSampleSite/NewsController.cs Model • News document model • Location o MvcSampleSite/Model/NewsModel.cs View • Strongly typed view • Using a layout page • Location o Views/MvcSampleSite/* Routes • Registered news list + news detail routes o / - news list o /news/<newsalias> - news detail • Location o App_Start/RouteConfig.cs
  • 22. MVC limitations MVC Views • No web parts • No CMS controls • Document permissions need to be checked manually Web parts • No MVC views Web forms (web parts) MVC
  • 23. Export/Import Export Site objects • Controllers/<siteName>/* • Views/<siteName>/* • <siteName>/* Global objects • Controllers/Global/* • Views/Global/* Import • Manually include files into CMSApp_MVC • Build CMSApp_MVC
  • 24. MVC upgrade MVC Upgrade Remove MVC4 libraries (Lib/MVC/) NuGet package • Recommended • Easier option • Only latest MVC version Manual MVC upgrade • More complicated • Specific MVC version Update Kentico MVC library Update Views/web.config Rebuild CMSApp_MVC
  • 25. Resources Kentico MVC https://docs.kentico.com/x/qYFG Upgrade MVC https://docs.kentico.com/x/UgBcAw API examples https://docs.kentico.com/x/VABcAw Document API https://docs.kentico.com/x/5oAbAg