SlideShare a Scribd company logo
Asp.net Overview and Controllers
AW
Prepared and presented by :
Muhammad Hesham & Mustafa Saeed
Aspiration Webbers
Session 5 (Asp.Net)
Controller
•Reko Meets ASP.NET
•What is ASP.NET
•Architecture of MVC
•Controller
Objectives
ASP.NET Overview
What is MVC
The MVC design pattern decouples the major
components of an application allowing for efficient code
reuse and parallel development.
Model,View,Controller
Controller
View
Model
Every web application needs some structure
MVC helps you to stay organized
Often end up with less code, not more
Smoother learning curve as your project growsmplicated,
What’s the point?
Seems complicated, What's the point?
Unit testing helps you change code with confidence
ASP.NET MVC is designed to make unit test easy
Testability
A controller is just a class
No really it is just a class :D
Controller
WWW.mywebsite.com/Album/Create
public class AlbumController : Controller
{
}
public ActionResult Create()
{
}
Controller
public class AlbumController : Controller
{
public ActionResult Create()
{
}
}
Controller
ActionResult
ActionResult
ContentResult
JavascriptResult JsonResult RedirectResult
ViewResult
ActionResult
Name Framework behivor Method Name
ContentResult Returns a string literal Content
JavaScriptResult Returns a script to execute Javascript
JSONResult Returns data in json json
RedirectResult Redirects the client to a new
URL
Redirect
ViewResult Response is the responsibility
of a view
View / ParialView
//Test/ReturnContent
public ContentResult ReturnContent()
{
return Content("Hello Heros");
}
ContentResult
//Test/ReturnContent
public ActionResult ReturnContent()
{
return Content("Hello Heros");
}
ContentResult
// Test/ReturnJson
public ActionResult ReturnJson()
{
return Json(
new { name = "Reko", LastName = "MSP" },
JsonRequestBehavior.AllowGet);
}
JsonResult
//Test/ReturnNot
public ActionResult ReturnNot()
{
return HttpNotFound("Sorry !!!");
}
HTTP Code
//Test/ReturnHttpCode
public ActionResult ReturnHttpCode()
{
return new HttpStatusCodeResult(500);
}
HTTP Code
// Test/ReturnFile
public ActionResult ReturnFile()
{
return File(Server.MapPath(
"~/Content/Site.css"), "text/css");
}
Return a File
string
Int
Person
Or anything !!
Actions parameters
// Test/Search?name=Something
public ActionResult Search(string name)
{
return Content(name);
}
Actions parameters
Actions attributes
Action VerbAction Selector
[ActionName("Modify")]
public ActionResult Edit()
{
return Content("Modify Action");
}
Actions Selector
//Test/Modify
Actions Verbs
Get data form the server.
Post data to the server.
Update data on the server.
Delete data from the server.
[HttpPost]
[HttpGet]
[HttpPut]
[HttpDelete]
[OutputCache]
[Authorize]
Actions Filters
Routes
C
M V
www.mywebsite.com/album/create
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{name}",
defaults:
new { controller = "Home", action = "Index",
name = UrlParameter.Optional });
public ActionResult Search(string name)
{
return Content(name);
}
Routes
Demo
Asp.net Overview and Controllers
Contact :
phmustafasaeed@outlook.com
Muhammad.hesham7@outlook.com
FB.com/groups/AWMSPCU17
Asp.net Overview and Controllers
Asp.net Overview and Controllers

More Related Content

PPT
TDD with ASP.NET MVC 1.0
Shiju Varghese
 
PPT
Introduction to ASP.NET MVC 1.0
Shiju Varghese
 
PPTX
ASP.NET 5 Overview - Post Build 2015
Shahed Chowdhuri
 
PPTX
Which is better asp.net mvc vs asp.net
Concetto Labs
 
PPTX
Webinar MVC6
Suyati Technologies
 
PPTX
ASP.NET 5 Overview for Apex Systems
Shahed Chowdhuri
 
PPTX
ASP.NET 5 & Unit Testing
Shahed Chowdhuri
 
PDF
Setup ColdFusion application using fusebox mvc architecture
Mindfire Solutions
 
TDD with ASP.NET MVC 1.0
Shiju Varghese
 
Introduction to ASP.NET MVC 1.0
Shiju Varghese
 
ASP.NET 5 Overview - Post Build 2015
Shahed Chowdhuri
 
Which is better asp.net mvc vs asp.net
Concetto Labs
 
Webinar MVC6
Suyati Technologies
 
ASP.NET 5 Overview for Apex Systems
Shahed Chowdhuri
 
ASP.NET 5 & Unit Testing
Shahed Chowdhuri
 
Setup ColdFusion application using fusebox mvc architecture
Mindfire Solutions
 

What's hot (19)

PPTX
ASP.NET 5 Overview: Post RTM
Shahed Chowdhuri
 
PPTX
Discuss About ASP.NET MVC 6 and ASP.NET MVC 5
Aaron Jacobson
 
PPTX
What's new in Visual Studio 2013 & TFS 2013
Danijel Malik
 
PDF
SpringPeople Introduction to Spring Framework
SpringPeople
 
PPTX
Lap Around ASP.NET MVC 5
Lohith Goudagere Nagaraj
 
PPTX
MVC 6 Introduction
Sudhakar Sharma
 
PPTX
ASP.NET Core
Maurice De Beijer [MVP]
 
PPT
ColdFusion framework comparison
VIkas Patel
 
PPTX
Entity Framework Code First Migrations
Diluka99999
 
PPTX
Ordina SOFTC Presentation - Deployment with TFS Build and Workflow
Ordina Belgium
 
PPTX
Asp net mvc series for beginers part 1
Gaurav Arora
 
PPTX
EVOLVE'16 | Enhance | Paul McMahon | Approaches to Leveraging AEM Within a Si...
Evolve The Adobe Digital Marketing Community
 
PDF
Moving ASP.NET MVC to ASP.NET Core
John Patrick Oliveros
 
PPTX
Untangle Your Front End Development with Visual Studio 2015
Scott Heckel
 
PPTX
Mercurial
Robert MacLean
 
PPTX
Combining HTML5 with MVC framework to simplify realtime collaboration for we...
Gopikrishnan Sasikumar
 
PPTX
How to build a Mobile API or HTML 5 app in 5 minutes
Robert MacLean
 
PPTX
A Smooth Transition to HTML5
Chris Bannon
 
PPTX
ASP.NET Core MVC + Web API with Overview
Shahed Chowdhuri
 
ASP.NET 5 Overview: Post RTM
Shahed Chowdhuri
 
Discuss About ASP.NET MVC 6 and ASP.NET MVC 5
Aaron Jacobson
 
What's new in Visual Studio 2013 & TFS 2013
Danijel Malik
 
SpringPeople Introduction to Spring Framework
SpringPeople
 
Lap Around ASP.NET MVC 5
Lohith Goudagere Nagaraj
 
MVC 6 Introduction
Sudhakar Sharma
 
ColdFusion framework comparison
VIkas Patel
 
Entity Framework Code First Migrations
Diluka99999
 
Ordina SOFTC Presentation - Deployment with TFS Build and Workflow
Ordina Belgium
 
Asp net mvc series for beginers part 1
Gaurav Arora
 
EVOLVE'16 | Enhance | Paul McMahon | Approaches to Leveraging AEM Within a Si...
Evolve The Adobe Digital Marketing Community
 
Moving ASP.NET MVC to ASP.NET Core
John Patrick Oliveros
 
Untangle Your Front End Development with Visual Studio 2015
Scott Heckel
 
Mercurial
Robert MacLean
 
Combining HTML5 with MVC framework to simplify realtime collaboration for we...
Gopikrishnan Sasikumar
 
How to build a Mobile API or HTML 5 app in 5 minutes
Robert MacLean
 
A Smooth Transition to HTML5
Chris Bannon
 
ASP.NET Core MVC + Web API with Overview
Shahed Chowdhuri
 
Ad

Similar to Asp.net Overview and Controllers (20)

PPS
Introduction To Mvc
Volkan Uzun
 
PPT
ASP.net MVC CodeCamp Presentation
buildmaster
 
PDF
Asp 1-mvc introduction
Fajar Baskoro
 
PPT
CTTDNUG ASP.NET MVC
Barry Gervin
 
PPTX
Asp.net mvc presentation by Nitin Sawant
Nitin S
 
PPTX
Introduction to ASP.Net MVC
Sagar Kamate
 
PPTX
MVC 4
Vasilios Kuznos
 
PDF
Introduction to ASP.NET MVC
Mayank Srivastava
 
PPTX
Asp.net mvc
erdemergin
 
PPT
Asp.net mvc
Phuc Le Cong
 
PDF
ASP.NET MVC 5 Building Your First Web Application (A Beginner S Guide
Alicia Buske
 
PDF
ASP NET MVC in Action 1st Edition Jeffrey Palermo
sysolkadieqj
 
PPTX
Hanselman lipton asp_connections_ams304_mvc
denemedeniz
 
PPT
Asp.net mvc
Taranjeet Singh
 
PDF
Targeting Mobile Platform with MVC 4.0
Mayank Srivastava
 
PPTX
Model view controller (mvc)
M Ahsan Khan
 
PPTX
Asp.net With mvc handson
Prashant Kumar
 
PPTX
ASPNet MVC series for beginers part 1
Gaurav Arora
 
PPTX
ASP.NET MVC From The Ground Up
Kevin Griffin
 
PPTX
ASP.NET MVC Fundamental
ldcphuc
 
Introduction To Mvc
Volkan Uzun
 
ASP.net MVC CodeCamp Presentation
buildmaster
 
Asp 1-mvc introduction
Fajar Baskoro
 
CTTDNUG ASP.NET MVC
Barry Gervin
 
Asp.net mvc presentation by Nitin Sawant
Nitin S
 
Introduction to ASP.Net MVC
Sagar Kamate
 
Introduction to ASP.NET MVC
Mayank Srivastava
 
Asp.net mvc
erdemergin
 
Asp.net mvc
Phuc Le Cong
 
ASP.NET MVC 5 Building Your First Web Application (A Beginner S Guide
Alicia Buske
 
ASP NET MVC in Action 1st Edition Jeffrey Palermo
sysolkadieqj
 
Hanselman lipton asp_connections_ams304_mvc
denemedeniz
 
Asp.net mvc
Taranjeet Singh
 
Targeting Mobile Platform with MVC 4.0
Mayank Srivastava
 
Model view controller (mvc)
M Ahsan Khan
 
Asp.net With mvc handson
Prashant Kumar
 
ASPNet MVC series for beginers part 1
Gaurav Arora
 
ASP.NET MVC From The Ground Up
Kevin Griffin
 
ASP.NET MVC Fundamental
ldcphuc
 
Ad

More from Mustafa Saeed (6)

PPSX
Session One HTML
Mustafa Saeed
 
PPSX
Session six ASP.net (MVC) View
Mustafa Saeed
 
PPSX
Session Two css
Mustafa Saeed
 
PPSX
Seesion 7 ASP.Net (MVC) Model
Mustafa Saeed
 
PPSX
Session Four C#
Mustafa Saeed
 
PPSX
Session three *JavaScript*
Mustafa Saeed
 
Session One HTML
Mustafa Saeed
 
Session six ASP.net (MVC) View
Mustafa Saeed
 
Session Two css
Mustafa Saeed
 
Seesion 7 ASP.Net (MVC) Model
Mustafa Saeed
 
Session Four C#
Mustafa Saeed
 
Session three *JavaScript*
Mustafa Saeed
 

Recently uploaded (20)

PDF
Bandai Playdia The Book - David Glotz
BluePanther6
 
PDF
ShowUs: Pharo Stream Deck (ESUG 2025, Gdansk)
ESUG
 
PPTX
PFAS Reporting Requirements 2026 Are You Submission Ready Certivo.pptx
Certivo Inc
 
PPTX
ASSIGNMENT_1[1][1][1][1][1] (1) variables.pptx
kr2589474
 
PDF
IEEE-CS Tech Predictions, SWEBOK and Quantum Software: Towards Q-SWEBOK
Hironori Washizaki
 
PDF
Build Multi-agent using Agent Development Kit
FadyIbrahim23
 
PDF
How to Seamlessly Integrate Salesforce Data Cloud with Marketing Cloud.pdf
NSIQINFOTECH
 
PDF
Teaching Reproducibility and Embracing Variability: From Floating-Point Exper...
University of Rennes, INSA Rennes, Inria/IRISA, CNRS
 
DOCX
The Future of Smart Factories Why Embedded Analytics Leads the Way
Varsha Nayak
 
PDF
Key Features to Look for in Arizona App Development Services
Net-Craft.com
 
PDF
Protecting the Digital World Cyber Securit
dnthakkar16
 
PDF
advancepresentationskillshdhdhhdhdhdhhfhf
jasmenrojas249
 
PDF
Exploring AI Agents in Process Industries
amoreira6
 
PPTX
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
PDF
Why Use Open Source Reporting Tools for Business Intelligence.pdf
Varsha Nayak
 
PPTX
ConcordeApp: Engineering Global Impact & Unlocking Billions in Event ROI with AI
chastechaste14
 
PDF
What to consider before purchasing Microsoft 365 Business Premium_PDF.pdf
Q-Advise
 
PPTX
AI-Ready Handoff: Auto-Summaries & Draft Emails from MQL to Slack in One Flow
bbedford2
 
PPTX
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PDF
Solar Panel Installation Guide – Step By Step Process 2025.pdf
CRMLeaf
 
Bandai Playdia The Book - David Glotz
BluePanther6
 
ShowUs: Pharo Stream Deck (ESUG 2025, Gdansk)
ESUG
 
PFAS Reporting Requirements 2026 Are You Submission Ready Certivo.pptx
Certivo Inc
 
ASSIGNMENT_1[1][1][1][1][1] (1) variables.pptx
kr2589474
 
IEEE-CS Tech Predictions, SWEBOK and Quantum Software: Towards Q-SWEBOK
Hironori Washizaki
 
Build Multi-agent using Agent Development Kit
FadyIbrahim23
 
How to Seamlessly Integrate Salesforce Data Cloud with Marketing Cloud.pdf
NSIQINFOTECH
 
Teaching Reproducibility and Embracing Variability: From Floating-Point Exper...
University of Rennes, INSA Rennes, Inria/IRISA, CNRS
 
The Future of Smart Factories Why Embedded Analytics Leads the Way
Varsha Nayak
 
Key Features to Look for in Arizona App Development Services
Net-Craft.com
 
Protecting the Digital World Cyber Securit
dnthakkar16
 
advancepresentationskillshdhdhhdhdhdhhfhf
jasmenrojas249
 
Exploring AI Agents in Process Industries
amoreira6
 
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
Why Use Open Source Reporting Tools for Business Intelligence.pdf
Varsha Nayak
 
ConcordeApp: Engineering Global Impact & Unlocking Billions in Event ROI with AI
chastechaste14
 
What to consider before purchasing Microsoft 365 Business Premium_PDF.pdf
Q-Advise
 
AI-Ready Handoff: Auto-Summaries & Draft Emails from MQL to Slack in One Flow
bbedford2
 
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
Solar Panel Installation Guide – Step By Step Process 2025.pdf
CRMLeaf
 

Asp.net Overview and Controllers