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
PPT
Introduction to ASP.NET MVC 1.0
PPTX
ASP.NET 5 Overview - Post Build 2015
PPTX
Which is better asp.net mvc vs asp.net
PPTX
Webinar MVC6
PPTX
ASP.NET 5 Overview for Apex Systems
PPTX
ASP.NET 5 & Unit Testing
PDF
Setup ColdFusion application using fusebox mvc architecture
TDD with ASP.NET MVC 1.0
Introduction to ASP.NET MVC 1.0
ASP.NET 5 Overview - Post Build 2015
Which is better asp.net mvc vs asp.net
Webinar MVC6
ASP.NET 5 Overview for Apex Systems
ASP.NET 5 & Unit Testing
Setup ColdFusion application using fusebox mvc architecture

What's hot (19)

PPTX
ASP.NET 5 Overview: Post RTM
PPTX
Discuss About ASP.NET MVC 6 and ASP.NET MVC 5
PPTX
What's new in Visual Studio 2013 & TFS 2013
PDF
SpringPeople Introduction to Spring Framework
PPTX
Lap Around ASP.NET MVC 5
PPTX
MVC 6 Introduction
PPTX
PPT
ColdFusion framework comparison
PPTX
Entity Framework Code First Migrations
PPTX
Ordina SOFTC Presentation - Deployment with TFS Build and Workflow
PPTX
Asp net mvc series for beginers part 1
PPTX
EVOLVE'16 | Enhance | Paul McMahon | Approaches to Leveraging AEM Within a Si...
PDF
Moving ASP.NET MVC to ASP.NET Core
PPTX
Untangle Your Front End Development with Visual Studio 2015
PPTX
Mercurial
PPTX
Combining HTML5 with MVC framework to simplify realtime collaboration for we...
PPTX
How to build a Mobile API or HTML 5 app in 5 minutes
PPTX
A Smooth Transition to HTML5
PPTX
ASP.NET Core MVC + Web API with Overview
ASP.NET 5 Overview: Post RTM
Discuss About ASP.NET MVC 6 and ASP.NET MVC 5
What's new in Visual Studio 2013 & TFS 2013
SpringPeople Introduction to Spring Framework
Lap Around ASP.NET MVC 5
MVC 6 Introduction
ColdFusion framework comparison
Entity Framework Code First Migrations
Ordina SOFTC Presentation - Deployment with TFS Build and Workflow
Asp net mvc series for beginers part 1
EVOLVE'16 | Enhance | Paul McMahon | Approaches to Leveraging AEM Within a Si...
Moving ASP.NET MVC to ASP.NET Core
Untangle Your Front End Development with Visual Studio 2015
Mercurial
Combining HTML5 with MVC framework to simplify realtime collaboration for we...
How to build a Mobile API or HTML 5 app in 5 minutes
A Smooth Transition to HTML5
ASP.NET Core MVC + Web API with Overview
Ad

Similar to Asp.net Overview and Controllers (20)

PPS
Introduction To Mvc
PPT
ASP.net MVC CodeCamp Presentation
PDF
Asp 1-mvc introduction
PPT
CTTDNUG ASP.NET MVC
PPTX
Asp.net mvc presentation by Nitin Sawant
PPTX
Introduction to ASP.Net MVC
PPTX
PDF
Introduction to ASP.NET MVC
PPTX
Asp.net mvc
PPT
Asp.net mvc
PDF
ASP.NET MVC 5 Building Your First Web Application (A Beginner S Guide
PDF
ASP NET MVC in Action 1st Edition Jeffrey Palermo
PPTX
Hanselman lipton asp_connections_ams304_mvc
PPT
Asp.net mvc
PDF
Targeting Mobile Platform with MVC 4.0
PPTX
Model view controller (mvc)
PPTX
Asp.net With mvc handson
PPTX
ASPNet MVC series for beginers part 1
PPTX
ASP.NET MVC From The Ground Up
PPTX
ASP.NET MVC Fundamental
Introduction To Mvc
ASP.net MVC CodeCamp Presentation
Asp 1-mvc introduction
CTTDNUG ASP.NET MVC
Asp.net mvc presentation by Nitin Sawant
Introduction to ASP.Net MVC
Introduction to ASP.NET MVC
Asp.net mvc
Asp.net mvc
ASP.NET MVC 5 Building Your First Web Application (A Beginner S Guide
ASP NET MVC in Action 1st Edition Jeffrey Palermo
Hanselman lipton asp_connections_ams304_mvc
Asp.net mvc
Targeting Mobile Platform with MVC 4.0
Model view controller (mvc)
Asp.net With mvc handson
ASPNet MVC series for beginers part 1
ASP.NET MVC From The Ground Up
ASP.NET MVC Fundamental
Ad

More from Mustafa Saeed (6)

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

Recently uploaded (20)

PDF
AI in Product Development-omnex systems
PPTX
ai tools demonstartion for schools and inter college
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
Introduction to Artificial Intelligence
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
System and Network Administration Chapter 2
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
medical staffing services at VALiNTRY
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PPTX
Transform Your Business with a Software ERP System
PPTX
L1 - Introduction to python Backend.pptx
PDF
System and Network Administraation Chapter 3
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
AI in Product Development-omnex systems
ai tools demonstartion for schools and inter college
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Introduction to Artificial Intelligence
Which alternative to Crystal Reports is best for small or large businesses.pdf
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
Internet Downloader Manager (IDM) Crack 6.42 Build 41
System and Network Administration Chapter 2
PTS Company Brochure 2025 (1).pdf.......
medical staffing services at VALiNTRY
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
VVF-Customer-Presentation2025-Ver1.9.pptx
Understanding Forklifts - TECH EHS Solution
Upgrade and Innovation Strategies for SAP ERP Customers
Transform Your Business with a Software ERP System
L1 - Introduction to python Backend.pptx
System and Network Administraation Chapter 3
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)

Asp.net Overview and Controllers