SlideShare a Scribd company logo
End-to-End SPA Development
using ASP.NET and AngularJS
Gil Fink
CEO and Senior Consultant, sparXys
Single Page Applications
Managers and SPA
Trying to solve the puzzle of single page application…
Even the Shortened Name
is Misleading…
Let’s build a SPA?
About Me
• sparXys CEO and Senior consultant
• ASP.NET/IIS Microsoft MVP
• Co-author of Pro Single Page Application
Development (Apress)
• Co-author of 4 Microsoft Official Courses (MOCs)
• Co-organizer of GDG Rashlatz
Agenda
• The Road to Single Page Applications
• What is a SPA?
• SPA Building Blocks
• ASP.NET MVC/Web API in the Backend
• AngularJS in the Front-End
The Road to SPAs
1990
HTML
HTTP
1995
Java
Applets
1996
CSS
JavaScript
Flash
1997
HTML 4
2005
Ajax is a
buzzword
2006
work on
HTML5
starts
2007
Silverlight
Mobile Web
Traditional Websites
OMG! not this kind of traditional website please!
Traditional Native Apps
Native apps – we love installation experience… Not!
What is a SPA?
Web Application
No full page
submit
No full page
refresh
No embedded
objects
(plugins)
Client-side
templating
and routing
Why to Develop SPAs?
Feature Web App Native App Single Page
App
Cross Platform
functionality
V X V
Client State
Management
X V V
No Installation
required
V X V
Web
App
Native
App
SPA
SPA Building Blocks
HTML5
JavaScript Libraries
Ajax
REST
SPA
Web API
Routing
HTML5
• Supported by most modern browsers
o www.caniuse.com
• Includes new JavaScript APIs that can help to:
o Store data locally
o Persist data across application shutdowns
o Communicate with the server in new ways
o Increase web performance with new specifications and APIs
Ajax
• Asynchronous JavaScript and XML
o No XML these days…
o Asynchronous JavaScript and JSON (Ajaj) today
• Asynchronously call server endpoints
• You can
o Maintain state in the client side
o Go to the server asynchronously
o Render elements without full page refresh using JavaScript
JavaScript
Libraries/Frameworks
Any application that can be
written in
JavaScript, will eventually
be written in JavaScript
Atwood's Law
REST
• REpresntational State Transfer
• Architecture style for working with HTTP
• Using HTTP verbs (POST, GET, PUT, DELETE)
o Performs Create, Read, Update and Delete operations respectively
o Can also use other HTTP verbs
• Can receive and send data in variety of formats
o JSON, XML, HTML, XHTML, Blob and more
Web API
• The server is used mostly as API
o Each API function is an endpoint
• No need for server page rendering
• No need for server routing
Client-Side Routing
• All routing is performed in the client-side
• You use a routing library/framework
o Or your own implementation on top of HTML5 History API
• When a route changes
o The library/framework intercepts the navigation and performs your
functionality
DEMO
OurCompany SPA
Let’s Get started
Server Side
End to-End SPA Development Using ASP.NET and AngularJS
Demo
File -> New Project -> ASP.NET with MVC and Web API
ASP.NET MVC 101
Controller
(Input)
Model
(Logic)
View
(Presentation)
ASP.NET MVC Players
• Model
o Responsible to hold data
o Sometimes include constraints such as validation
• View
o Responsible to render the view into HTML
o Uses the Razor view engine
• Controller
o Responsible for handling user requests
o User request is mapped to an action on the controller
How Does MVC Work?
Request
View
Controller
Response
Controller
Handles input
(HTTP requests)
View
Visually represents
the model
Demo
MVC in Action
ASP.NET Web API 101
• Web API is designed to leverage the HTTP protocol
• Uses Convention over configuration for actions
o URI + Verb = Controller + Action
• Includes a lot of HTTP concepts built-in
o For example content negotiation or HTTP caching
Demo
Web API in Action
ASP.NET Routing
• Routing is built into ASP.NET
o Can be used by MVC and Web API
• Maps the physical files to logical URLs
• Provides meaningful URLs
• Readable for
o Search engines
o End users
Demo
ASP.NET Routing
How Does ASP.NET Fit
for SPAs?
• ASP.NET MVC acts
o As the single page generator
o As templates generator
o Can help to leverage server side mechanisms when they are needed
• ASP.NET Web API acts
o As the gateway to handle server operations
o As the application API
Front-End
End to-End SPA Development Using ASP.NET and AngularJS
AngularJS?
• A MVW framework
• Developed and supported by Google
• Open source
• No external dependencies
• Very opinionated
Demo
Adding AngularJS to Our Project
AngularJS Building
Blocks
Module
Module
Module
Scope Controller ServiceTemplate
Filter Directive
Two-
Way
Binding
Dependency
Injection
Routing
Controllers
Module
Module
Module
Scope Controller ServiceTemplate
Filter Directive
Dependency
Injection
Routing
Controllers
• The logic behind a view part
• Holds a child scope
o Used as a view-model
• Orchestrators for
o View operations through the scope
o Services
Scopes
• The glue between a controller and a view
• Include properties and the functions set by
controllers that a view can later use
var myApp = angular.module(‘myApp’,[]);
myApp.controller(‘MyController‘, function($scope) {
$scope.message = ‘hello’;
$scope.myFunc = function() {
// do something
}
});
Demo
Controllers
Services
Module
Module
Module
Scope Controller ServiceTemplate
Filter Directive
Dependency
Injection
Routing
Services
• Singleton objects that are used to perform a
specific task
• UI independent
o Shouldn’t manipulate UI elements
• Has different types
o Each type has its own purpose
SERVICE TYPE DESCRIPTION
value The injector will return the exact value
factory The injector will invoke the given factory function
service
The injector will use the new keyword to create the
service single instance
provider The injector will invoke the provider’s $get function
Services – Cont.
• Service declaration example:
var myApp = angular.module(‘myApp’,[]);
myApp.value(‘myValue’, ‘a constant value);
myApp.factory(‘myFactory’, function(name) {
return ‘Hi ‘ + name;
}
Built-in Services
• AngularJS comes with several built-in services
• You can use services such as:
o $http – for communicating over HTTP with remote servers
o $resource – for communicating with REST services
o $q – for creation of promises
o $log – for logging
o $window – for communicating with the window object
o Many more
Demo
Services
Directives
Module
Module
Module
Scope Controller ServiceTemplate
Filter Directive
Dependency
Injection
Routing
Directives
• Custom HTML elements and attributes that
AngularJS recognizes as part of its ecosystem
• Allow to
o Extend the existing HTML with your own elements or attributes
o Add behavior to existing elements or attributes
• Angular includes a long list of built-in directives such
as:
o ng-app – to declare the main module
o ng-controller – to bind a piece of HTML to a controller
o ng-repeat – for collection iterator
o ng-eventName – add custom behavior on a specific event
o Many more
Custom Directives
• You can create your own custom directives
• Use the module directive function and return a
Directive Definition Object (DDO)
• DDOs include various configuration options:
o templateUrl – the URL for a template the directive will use
o Template – appends a given HTML as the child element of the element
o replace – If set to true will replace the entire element with a given
template (used with the template or templateUrl)
o scope – the scope object to use with the directive
o Many more
Custom Directives – Cont.
• Custom directive example:
myApp.directive('myDialog',function () {
return {
restrict: ‘E’,
scope: {},
template: ‘<div>{{message}}</div>’,
link: function(scope, element, attrs) {
scope.message = ‘hello’;
}
};
});
Demo
Directives
Routing
Module
Module
Module
Scope Controller ServiceTemplate
Filter Directive
Dependency
Injection
Routing
Routing
• One of the most important mechanisms in SPAs
• Enables developers to intercept route changes
• Later on, helps to replace a shell element with a
rendered document fragment
• You can use an AngularJS routing module
o For example, ngRoute is a router module for AngularJS
Demo
Full Example Explained
Questions?
Summary
• SPAs are entire web applications built upon one
page and JavaScript interactions
• Very suitable for mobile development
• SPAs are one of the ways to build your next web
apps!
Resources
• Download the slide deck -
• My Blog – http://www.gilfink.net
• Follow me on Twitter – @gilfink
Thank You!
Feedback
http://tiny.cc/hybgyx
Ad

Recommended

Building great spa’s with angular js, asp.net mvc and webapi
Building great spa’s with angular js, asp.net mvc and webapi
Maurice De Beijer [MVP]
 
Introduction of ASP.NET MVC and AngularJS
Introduction of ASP.NET MVC and AngularJS
Mohamed Elkhodary
 
The RAW stack
The RAW stack
Maurice De Beijer [MVP]
 
Introduction to ASP.NET MVC
Introduction to ASP.NET MVC
Sirwan Afifi
 
Single page application and Framework
Single page application and Framework
Chandrasekar G
 
Angular vs React: Building modern SharePoint interfaces with SPFx
Angular vs React: Building modern SharePoint interfaces with SPFx
Dimcho Tsanov
 
The RAW stack
The RAW stack
Maurice De Beijer [MVP]
 
Single Page Application Development with backbone.js and Simple.Web
Single Page Application Development with backbone.js and Simple.Web
Chris Canal
 
Jquery
Jquery
Swapnil & Patil
 
AngularJS Scopes
AngularJS Scopes
Mohamed Elkhodary
 
React or Angular and SharePoint Framework Development
React or Angular and SharePoint Framework Development
Darin Dickey
 
Modern Applications With Asp.net Core 5 and Vue JS 3
Modern Applications With Asp.net Core 5 and Vue JS 3
Alexandre Malavasi
 
Building rest services using aspnetwebapi
Building rest services using aspnetwebapi
Brij Mishra
 
Latest Javascript MVC & Front End Frameworks 2017
Latest Javascript MVC & Front End Frameworks 2017
AmarInfotech
 
AngularJS vs React JS vs Node JS: Which is Best For Web Development ?
AngularJS vs React JS vs Node JS: Which is Best For Web Development ?
MarkupBox
 
Angular js - 10 reasons to choose angularjs
Angular js - 10 reasons to choose angularjs
Nir Kaufman
 
Build fast word press site in react in 30 mins with frontity
Build fast word press site in react in 30 mins with frontity
Imran Sayed
 
Interoperability of components built with different frameworks
Interoperability of components built with different frameworks
Souvik Basu
 
Single Page Application (SPA) using AngularJS
Single Page Application (SPA) using AngularJS
M R Rony
 
Building Modern Web Applications with ASP.NET5
Building Modern Web Applications with ASP.NET5
Brij Mishra
 
Introduction to Vue.js DevStaff Meetup 13.02
Introduction to Vue.js DevStaff Meetup 13.02
Paul Bele
 
JS Framework Comparison - An infographic
JS Framework Comparison - An infographic
InApp
 
ASP.NET MVC 4
ASP.NET MVC 4
Danijel Malik
 
Moving from PHP to a nodejs full stack CMS
Moving from PHP to a nodejs full stack CMS
Make & Build
 
MEAN Stack
MEAN Stack
RoshanTak1
 
From zero to hero with Docker
From zero to hero with Docker
Maurice De Beijer [MVP]
 
Lessons in Open Source from the MongooseJS ODM
Lessons in Open Source from the MongooseJS ODM
Valeri Karpov
 
SGCE 2012 Lightning Talk-Single Page Interface
SGCE 2012 Lightning Talk-Single Page Interface
Domingo Suarez Torres
 
Benefits of developing single page web applications using angular js
Benefits of developing single page web applications using angular js
Harbinger Systems - HRTech Builder of Choice
 
Angular jS Introduction by Google
Angular jS Introduction by Google
ASG
 

More Related Content

What's hot (20)

Jquery
Jquery
Swapnil & Patil
 
AngularJS Scopes
AngularJS Scopes
Mohamed Elkhodary
 
React or Angular and SharePoint Framework Development
React or Angular and SharePoint Framework Development
Darin Dickey
 
Modern Applications With Asp.net Core 5 and Vue JS 3
Modern Applications With Asp.net Core 5 and Vue JS 3
Alexandre Malavasi
 
Building rest services using aspnetwebapi
Building rest services using aspnetwebapi
Brij Mishra
 
Latest Javascript MVC & Front End Frameworks 2017
Latest Javascript MVC & Front End Frameworks 2017
AmarInfotech
 
AngularJS vs React JS vs Node JS: Which is Best For Web Development ?
AngularJS vs React JS vs Node JS: Which is Best For Web Development ?
MarkupBox
 
Angular js - 10 reasons to choose angularjs
Angular js - 10 reasons to choose angularjs
Nir Kaufman
 
Build fast word press site in react in 30 mins with frontity
Build fast word press site in react in 30 mins with frontity
Imran Sayed
 
Interoperability of components built with different frameworks
Interoperability of components built with different frameworks
Souvik Basu
 
Single Page Application (SPA) using AngularJS
Single Page Application (SPA) using AngularJS
M R Rony
 
Building Modern Web Applications with ASP.NET5
Building Modern Web Applications with ASP.NET5
Brij Mishra
 
Introduction to Vue.js DevStaff Meetup 13.02
Introduction to Vue.js DevStaff Meetup 13.02
Paul Bele
 
JS Framework Comparison - An infographic
JS Framework Comparison - An infographic
InApp
 
ASP.NET MVC 4
ASP.NET MVC 4
Danijel Malik
 
Moving from PHP to a nodejs full stack CMS
Moving from PHP to a nodejs full stack CMS
Make & Build
 
MEAN Stack
MEAN Stack
RoshanTak1
 
From zero to hero with Docker
From zero to hero with Docker
Maurice De Beijer [MVP]
 
Lessons in Open Source from the MongooseJS ODM
Lessons in Open Source from the MongooseJS ODM
Valeri Karpov
 
SGCE 2012 Lightning Talk-Single Page Interface
SGCE 2012 Lightning Talk-Single Page Interface
Domingo Suarez Torres
 
React or Angular and SharePoint Framework Development
React or Angular and SharePoint Framework Development
Darin Dickey
 
Modern Applications With Asp.net Core 5 and Vue JS 3
Modern Applications With Asp.net Core 5 and Vue JS 3
Alexandre Malavasi
 
Building rest services using aspnetwebapi
Building rest services using aspnetwebapi
Brij Mishra
 
Latest Javascript MVC & Front End Frameworks 2017
Latest Javascript MVC & Front End Frameworks 2017
AmarInfotech
 
AngularJS vs React JS vs Node JS: Which is Best For Web Development ?
AngularJS vs React JS vs Node JS: Which is Best For Web Development ?
MarkupBox
 
Angular js - 10 reasons to choose angularjs
Angular js - 10 reasons to choose angularjs
Nir Kaufman
 
Build fast word press site in react in 30 mins with frontity
Build fast word press site in react in 30 mins with frontity
Imran Sayed
 
Interoperability of components built with different frameworks
Interoperability of components built with different frameworks
Souvik Basu
 
Single Page Application (SPA) using AngularJS
Single Page Application (SPA) using AngularJS
M R Rony
 
Building Modern Web Applications with ASP.NET5
Building Modern Web Applications with ASP.NET5
Brij Mishra
 
Introduction to Vue.js DevStaff Meetup 13.02
Introduction to Vue.js DevStaff Meetup 13.02
Paul Bele
 
JS Framework Comparison - An infographic
JS Framework Comparison - An infographic
InApp
 
Moving from PHP to a nodejs full stack CMS
Moving from PHP to a nodejs full stack CMS
Make & Build
 
Lessons in Open Source from the MongooseJS ODM
Lessons in Open Source from the MongooseJS ODM
Valeri Karpov
 
SGCE 2012 Lightning Talk-Single Page Interface
SGCE 2012 Lightning Talk-Single Page Interface
Domingo Suarez Torres
 

Similar to End to-End SPA Development Using ASP.NET and AngularJS (20)

Benefits of developing single page web applications using angular js
Benefits of developing single page web applications using angular js
Harbinger Systems - HRTech Builder of Choice
 
Angular jS Introduction by Google
Angular jS Introduction by Google
ASG
 
The Characteristics of a Successful SPA
The Characteristics of a Successful SPA
Gil Fink
 
CC 2015 Single Page Applications for the ASPNET Developer
CC 2015 Single Page Applications for the ASPNET Developer
Allen Conway
 
Tech io spa_angularjs_20130814_v0.9.5
Tech io spa_angularjs_20130814_v0.9.5
Ganesh Kondal
 
Angular js 1.3 basic tutorial
Angular js 1.3 basic tutorial
Al-Mutaz Bellah Salahat
 
AngularJS + NancyFx + MongoDB = The best trio for ultimate SPA by Bojan Velja...
AngularJS + NancyFx + MongoDB = The best trio for ultimate SPA by Bojan Velja...
Bojan Veljanovski
 
AngularJS 1.x - your first application (problems and solutions)
AngularJS 1.x - your first application (problems and solutions)
Igor Talevski
 
Single Page Application
Single Page Application
Prasad Narasimhan
 
Single Page Applications: Your Browser is the OS!
Single Page Applications: Your Browser is the OS!
Jeremy Likness
 
AngularJS - a radically different way of building Single Page Apps
AngularJS - a radically different way of building Single Page Apps
jivkopetiov
 
Build Modern Web Apps Using ASP.NET Web API and AngularJS
Build Modern Web Apps Using ASP.NET Web API and AngularJS
Taiseer Joudeh
 
Angular js
Angular js
Mauro Servienti
 
Single Page Angular Application Presentation
Single Page Angular Application Presentation
Knoldus Inc.
 
Single Page Angular Application Presentation
Single Page Angular Application Presentation
Knoldus Inc.
 
Angular webinar - Credo Systemz
Angular webinar - Credo Systemz
Training Institute
 
Intro to AngularJS
Intro to AngularJS
Sparkhound Inc.
 
Angular js introduction
Angular js introduction
Praveen Gubbala
 
Single Page Apps
Single Page Apps
Gil Fink
 
Single page applications with backbone js
Single page applications with backbone js
Gil Fink
 
Angular jS Introduction by Google
Angular jS Introduction by Google
ASG
 
The Characteristics of a Successful SPA
The Characteristics of a Successful SPA
Gil Fink
 
CC 2015 Single Page Applications for the ASPNET Developer
CC 2015 Single Page Applications for the ASPNET Developer
Allen Conway
 
Tech io spa_angularjs_20130814_v0.9.5
Tech io spa_angularjs_20130814_v0.9.5
Ganesh Kondal
 
AngularJS + NancyFx + MongoDB = The best trio for ultimate SPA by Bojan Velja...
AngularJS + NancyFx + MongoDB = The best trio for ultimate SPA by Bojan Velja...
Bojan Veljanovski
 
AngularJS 1.x - your first application (problems and solutions)
AngularJS 1.x - your first application (problems and solutions)
Igor Talevski
 
Single Page Applications: Your Browser is the OS!
Single Page Applications: Your Browser is the OS!
Jeremy Likness
 
AngularJS - a radically different way of building Single Page Apps
AngularJS - a radically different way of building Single Page Apps
jivkopetiov
 
Build Modern Web Apps Using ASP.NET Web API and AngularJS
Build Modern Web Apps Using ASP.NET Web API and AngularJS
Taiseer Joudeh
 
Single Page Angular Application Presentation
Single Page Angular Application Presentation
Knoldus Inc.
 
Single Page Angular Application Presentation
Single Page Angular Application Presentation
Knoldus Inc.
 
Angular webinar - Credo Systemz
Angular webinar - Credo Systemz
Training Institute
 
Single Page Apps
Single Page Apps
Gil Fink
 
Single page applications with backbone js
Single page applications with backbone js
Gil Fink
 
Ad

More from Gil Fink (20)

Becoming a Tech Speaker
Becoming a Tech Speaker
Gil Fink
 
Web animation on steroids web animation api
Web animation on steroids web animation api
Gil Fink
 
The Time for Vanilla Web Components has Arrived
The Time for Vanilla Web Components has Arrived
Gil Fink
 
Stencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrived
Gil Fink
 
Stencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrived
Gil Fink
 
Stencil: The Time for Vanilla Web Components has Arrived
Stencil: The Time for Vanilla Web Components has Arrived
Gil Fink
 
Stencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrived
Gil Fink
 
Being a tech speaker
Being a tech speaker
Gil Fink
 
Working with Data in Service Workers
Working with Data in Service Workers
Gil Fink
 
Demystifying Angular Animations
Demystifying Angular Animations
Gil Fink
 
Redux data flow with angular
Redux data flow with angular
Gil Fink
 
Redux data flow with angular
Redux data flow with angular
Gil Fink
 
Who's afraid of front end databases?
Who's afraid of front end databases?
Gil Fink
 
One language to rule them all type script
One language to rule them all type script
Gil Fink
 
End to-end apps with type script
End to-end apps with type script
Gil Fink
 
Web component driven development
Web component driven development
Gil Fink
 
Web components
Web components
Gil Fink
 
Redux data flow with angular 2
Redux data flow with angular 2
Gil Fink
 
Biological Modeling, Powered by AngularJS
Biological Modeling, Powered by AngularJS
Gil Fink
 
Who's afraid of front end databases
Who's afraid of front end databases
Gil Fink
 
Becoming a Tech Speaker
Becoming a Tech Speaker
Gil Fink
 
Web animation on steroids web animation api
Web animation on steroids web animation api
Gil Fink
 
The Time for Vanilla Web Components has Arrived
The Time for Vanilla Web Components has Arrived
Gil Fink
 
Stencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrived
Gil Fink
 
Stencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrived
Gil Fink
 
Stencil: The Time for Vanilla Web Components has Arrived
Stencil: The Time for Vanilla Web Components has Arrived
Gil Fink
 
Stencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrived
Gil Fink
 
Being a tech speaker
Being a tech speaker
Gil Fink
 
Working with Data in Service Workers
Working with Data in Service Workers
Gil Fink
 
Demystifying Angular Animations
Demystifying Angular Animations
Gil Fink
 
Redux data flow with angular
Redux data flow with angular
Gil Fink
 
Redux data flow with angular
Redux data flow with angular
Gil Fink
 
Who's afraid of front end databases?
Who's afraid of front end databases?
Gil Fink
 
One language to rule them all type script
One language to rule them all type script
Gil Fink
 
End to-end apps with type script
End to-end apps with type script
Gil Fink
 
Web component driven development
Web component driven development
Gil Fink
 
Web components
Web components
Gil Fink
 
Redux data flow with angular 2
Redux data flow with angular 2
Gil Fink
 
Biological Modeling, Powered by AngularJS
Biological Modeling, Powered by AngularJS
Gil Fink
 
Who's afraid of front end databases
Who's afraid of front end databases
Gil Fink
 
Ad

Recently uploaded (20)

FIDO Seminar: Evolving Landscape of Post-Quantum Cryptography.pptx
FIDO Seminar: Evolving Landscape of Post-Quantum Cryptography.pptx
FIDO Alliance
 
The State of Web3 Industry- Industry Report
The State of Web3 Industry- Industry Report
Liveplex
 
Mastering AI Workflows with FME - Peak of Data & AI 2025
Mastering AI Workflows with FME - Peak of Data & AI 2025
Safe Software
 
FIDO Seminar: Perspectives on Passkeys & Consumer Adoption.pptx
FIDO Seminar: Perspectives on Passkeys & Consumer Adoption.pptx
FIDO Alliance
 
MuleSoft for AgentForce : Topic Center and API Catalog
MuleSoft for AgentForce : Topic Center and API Catalog
shyamraj55
 
AI vs Human Writing: Can You Tell the Difference?
AI vs Human Writing: Can You Tell the Difference?
Shashi Sathyanarayana, Ph.D
 
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven Infrastructure
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven Infrastructure
Safe Software
 
Integration of Utility Data into 3D BIM Models Using a 3D Solids Modeling Wor...
Integration of Utility Data into 3D BIM Models Using a 3D Solids Modeling Wor...
Safe Software
 
Securing Account Lifecycles in the Age of Deepfakes.pptx
Securing Account Lifecycles in the Age of Deepfakes.pptx
FIDO Alliance
 
June Patch Tuesday
June Patch Tuesday
Ivanti
 
“From Enterprise to Makers: Driving Vision AI Innovation at the Extreme Edge,...
“From Enterprise to Makers: Driving Vision AI Innovation at the Extreme Edge,...
Edge AI and Vision Alliance
 
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Alliance
 
TrustArc Webinar - 2025 Global Privacy Survey
TrustArc Webinar - 2025 Global Privacy Survey
TrustArc
 
Artificial Intelligence in the Nonprofit Boardroom.pdf
Artificial Intelligence in the Nonprofit Boardroom.pdf
OnBoard
 
AI VIDEO MAGAZINE - June 2025 - r/aivideo
AI VIDEO MAGAZINE - June 2025 - r/aivideo
1pcity Studios, Inc
 
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik
 
Viral>Wondershare Filmora 14.5.18.12900 Crack Free Download
Viral>Wondershare Filmora 14.5.18.12900 Crack Free Download
Puppy jhon
 
Bridging the divide: A conversation on tariffs today in the book industry - T...
Bridging the divide: A conversation on tariffs today in the book industry - T...
BookNet Canada
 
FME for Good: Integrating Multiple Data Sources with APIs to Support Local Ch...
FME for Good: Integrating Multiple Data Sources with APIs to Support Local Ch...
Safe Software
 
ENERGY CONSUMPTION CALCULATION IN ENERGY-EFFICIENT AIR CONDITIONER.pdf
ENERGY CONSUMPTION CALCULATION IN ENERGY-EFFICIENT AIR CONDITIONER.pdf
Muhammad Rizwan Akram
 
FIDO Seminar: Evolving Landscape of Post-Quantum Cryptography.pptx
FIDO Seminar: Evolving Landscape of Post-Quantum Cryptography.pptx
FIDO Alliance
 
The State of Web3 Industry- Industry Report
The State of Web3 Industry- Industry Report
Liveplex
 
Mastering AI Workflows with FME - Peak of Data & AI 2025
Mastering AI Workflows with FME - Peak of Data & AI 2025
Safe Software
 
FIDO Seminar: Perspectives on Passkeys & Consumer Adoption.pptx
FIDO Seminar: Perspectives on Passkeys & Consumer Adoption.pptx
FIDO Alliance
 
MuleSoft for AgentForce : Topic Center and API Catalog
MuleSoft for AgentForce : Topic Center and API Catalog
shyamraj55
 
AI vs Human Writing: Can You Tell the Difference?
AI vs Human Writing: Can You Tell the Difference?
Shashi Sathyanarayana, Ph.D
 
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven Infrastructure
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven Infrastructure
Safe Software
 
Integration of Utility Data into 3D BIM Models Using a 3D Solids Modeling Wor...
Integration of Utility Data into 3D BIM Models Using a 3D Solids Modeling Wor...
Safe Software
 
Securing Account Lifecycles in the Age of Deepfakes.pptx
Securing Account Lifecycles in the Age of Deepfakes.pptx
FIDO Alliance
 
June Patch Tuesday
June Patch Tuesday
Ivanti
 
“From Enterprise to Makers: Driving Vision AI Innovation at the Extreme Edge,...
“From Enterprise to Makers: Driving Vision AI Innovation at the Extreme Edge,...
Edge AI and Vision Alliance
 
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Alliance
 
TrustArc Webinar - 2025 Global Privacy Survey
TrustArc Webinar - 2025 Global Privacy Survey
TrustArc
 
Artificial Intelligence in the Nonprofit Boardroom.pdf
Artificial Intelligence in the Nonprofit Boardroom.pdf
OnBoard
 
AI VIDEO MAGAZINE - June 2025 - r/aivideo
AI VIDEO MAGAZINE - June 2025 - r/aivideo
1pcity Studios, Inc
 
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik
 
Viral>Wondershare Filmora 14.5.18.12900 Crack Free Download
Viral>Wondershare Filmora 14.5.18.12900 Crack Free Download
Puppy jhon
 
Bridging the divide: A conversation on tariffs today in the book industry - T...
Bridging the divide: A conversation on tariffs today in the book industry - T...
BookNet Canada
 
FME for Good: Integrating Multiple Data Sources with APIs to Support Local Ch...
FME for Good: Integrating Multiple Data Sources with APIs to Support Local Ch...
Safe Software
 
ENERGY CONSUMPTION CALCULATION IN ENERGY-EFFICIENT AIR CONDITIONER.pdf
ENERGY CONSUMPTION CALCULATION IN ENERGY-EFFICIENT AIR CONDITIONER.pdf
Muhammad Rizwan Akram
 

End to-End SPA Development Using ASP.NET and AngularJS

  • 1. End-to-End SPA Development using ASP.NET and AngularJS Gil Fink CEO and Senior Consultant, sparXys
  • 3. Managers and SPA Trying to solve the puzzle of single page application…
  • 4. Even the Shortened Name is Misleading… Let’s build a SPA?
  • 5. About Me • sparXys CEO and Senior consultant • ASP.NET/IIS Microsoft MVP • Co-author of Pro Single Page Application Development (Apress) • Co-author of 4 Microsoft Official Courses (MOCs) • Co-organizer of GDG Rashlatz
  • 6. Agenda • The Road to Single Page Applications • What is a SPA? • SPA Building Blocks • ASP.NET MVC/Web API in the Backend • AngularJS in the Front-End
  • 7. The Road to SPAs 1990 HTML HTTP 1995 Java Applets 1996 CSS JavaScript Flash 1997 HTML 4 2005 Ajax is a buzzword 2006 work on HTML5 starts 2007 Silverlight Mobile Web
  • 8. Traditional Websites OMG! not this kind of traditional website please!
  • 9. Traditional Native Apps Native apps – we love installation experience… Not!
  • 10. What is a SPA? Web Application No full page submit No full page refresh No embedded objects (plugins) Client-side templating and routing
  • 11. Why to Develop SPAs? Feature Web App Native App Single Page App Cross Platform functionality V X V Client State Management X V V No Installation required V X V Web App Native App SPA
  • 12. SPA Building Blocks HTML5 JavaScript Libraries Ajax REST SPA Web API Routing
  • 13. HTML5 • Supported by most modern browsers o www.caniuse.com • Includes new JavaScript APIs that can help to: o Store data locally o Persist data across application shutdowns o Communicate with the server in new ways o Increase web performance with new specifications and APIs
  • 14. Ajax • Asynchronous JavaScript and XML o No XML these days… o Asynchronous JavaScript and JSON (Ajaj) today • Asynchronously call server endpoints • You can o Maintain state in the client side o Go to the server asynchronously o Render elements without full page refresh using JavaScript
  • 16. Any application that can be written in JavaScript, will eventually be written in JavaScript Atwood's Law
  • 17. REST • REpresntational State Transfer • Architecture style for working with HTTP • Using HTTP verbs (POST, GET, PUT, DELETE) o Performs Create, Read, Update and Delete operations respectively o Can also use other HTTP verbs • Can receive and send data in variety of formats o JSON, XML, HTML, XHTML, Blob and more
  • 18. Web API • The server is used mostly as API o Each API function is an endpoint • No need for server page rendering • No need for server routing
  • 19. Client-Side Routing • All routing is performed in the client-side • You use a routing library/framework o Or your own implementation on top of HTML5 History API • When a route changes o The library/framework intercepts the navigation and performs your functionality
  • 24. Demo File -> New Project -> ASP.NET with MVC and Web API
  • 26. ASP.NET MVC Players • Model o Responsible to hold data o Sometimes include constraints such as validation • View o Responsible to render the view into HTML o Uses the Razor view engine • Controller o Responsible for handling user requests o User request is mapped to an action on the controller
  • 27. How Does MVC Work? Request View Controller Response Controller Handles input (HTTP requests) View Visually represents the model
  • 29. ASP.NET Web API 101 • Web API is designed to leverage the HTTP protocol • Uses Convention over configuration for actions o URI + Verb = Controller + Action • Includes a lot of HTTP concepts built-in o For example content negotiation or HTTP caching
  • 30. Demo Web API in Action
  • 31. ASP.NET Routing • Routing is built into ASP.NET o Can be used by MVC and Web API • Maps the physical files to logical URLs • Provides meaningful URLs • Readable for o Search engines o End users
  • 33. How Does ASP.NET Fit for SPAs? • ASP.NET MVC acts o As the single page generator o As templates generator o Can help to leverage server side mechanisms when they are needed • ASP.NET Web API acts o As the gateway to handle server operations o As the application API
  • 36. AngularJS? • A MVW framework • Developed and supported by Google • Open source • No external dependencies • Very opinionated
  • 38. AngularJS Building Blocks Module Module Module Scope Controller ServiceTemplate Filter Directive Two- Way Binding Dependency Injection Routing
  • 40. Controllers • The logic behind a view part • Holds a child scope o Used as a view-model • Orchestrators for o View operations through the scope o Services
  • 41. Scopes • The glue between a controller and a view • Include properties and the functions set by controllers that a view can later use var myApp = angular.module(‘myApp’,[]); myApp.controller(‘MyController‘, function($scope) { $scope.message = ‘hello’; $scope.myFunc = function() { // do something } });
  • 44. Services • Singleton objects that are used to perform a specific task • UI independent o Shouldn’t manipulate UI elements • Has different types o Each type has its own purpose SERVICE TYPE DESCRIPTION value The injector will return the exact value factory The injector will invoke the given factory function service The injector will use the new keyword to create the service single instance provider The injector will invoke the provider’s $get function
  • 45. Services – Cont. • Service declaration example: var myApp = angular.module(‘myApp’,[]); myApp.value(‘myValue’, ‘a constant value); myApp.factory(‘myFactory’, function(name) { return ‘Hi ‘ + name; }
  • 46. Built-in Services • AngularJS comes with several built-in services • You can use services such as: o $http – for communicating over HTTP with remote servers o $resource – for communicating with REST services o $q – for creation of promises o $log – for logging o $window – for communicating with the window object o Many more
  • 49. Directives • Custom HTML elements and attributes that AngularJS recognizes as part of its ecosystem • Allow to o Extend the existing HTML with your own elements or attributes o Add behavior to existing elements or attributes • Angular includes a long list of built-in directives such as: o ng-app – to declare the main module o ng-controller – to bind a piece of HTML to a controller o ng-repeat – for collection iterator o ng-eventName – add custom behavior on a specific event o Many more
  • 50. Custom Directives • You can create your own custom directives • Use the module directive function and return a Directive Definition Object (DDO) • DDOs include various configuration options: o templateUrl – the URL for a template the directive will use o Template – appends a given HTML as the child element of the element o replace – If set to true will replace the entire element with a given template (used with the template or templateUrl) o scope – the scope object to use with the directive o Many more
  • 51. Custom Directives – Cont. • Custom directive example: myApp.directive('myDialog',function () { return { restrict: ‘E’, scope: {}, template: ‘<div>{{message}}</div>’, link: function(scope, element, attrs) { scope.message = ‘hello’; } }; });
  • 54. Routing • One of the most important mechanisms in SPAs • Enables developers to intercept route changes • Later on, helps to replace a shell element with a rendered document fragment • You can use an AngularJS routing module o For example, ngRoute is a router module for AngularJS
  • 57. Summary • SPAs are entire web applications built upon one page and JavaScript interactions • Very suitable for mobile development • SPAs are one of the ways to build your next web apps!
  • 58. Resources • Download the slide deck - • My Blog – http://www.gilfink.net • Follow me on Twitter – @gilfink