Jim Fawcett CSE686 – Internet Programming Spring 2014

Slides:



Advertisements
Similar presentations
INTRODUCTION TO ASP.NET MVC AND EXAMPLE WALKTHROUGH RAJAT ARYA EFECS - OIM DAWG – 4/21/2009 ASP.NET MVC.
Advertisements

Introduction to MVC Adding a View Page NTPCUG Tom Perkins, Ph.D.
Introduction to MVC Action Methods, Edit View, and a Search Feature NTPCUG Dr. Tom Perkins.
1.  Understanding about How to Working with Server Side Scripting using PHP Framework (CodeIgniter) 2.
1 Chapter 12 Working With Access 2000 on the Internet.
Chapter 12: ADO.NET and ASP.NET Programming with Microsoft Visual Basic.NET, Second Edition.
Performed by:Gidi Getter Svetlana Klinovsky Supervised by:Viktor Kulikov 08/03/2009.
Computer Science 101 Web Access to Databases Overview of Web Access to Databases.
Christopher M. Pascucci Basic Structural Concepts of.NET Browser – Server Interaction.
ASP.NET Programming with C# and SQL Server First Edition
Tutorial: Introduction to ASP.NET Internet Technologies and Web Application 4 th February 2010.
JavaScript & jQuery the missing manual Chapter 11
Dr. Azeddine Chikh IS444: Modern tools for applications development.
Server-side Scripting Powering the webs favourite services.
4-1 INTERNET DATABASE CONNECTOR Colorado Technical University IT420 Tim Peterson.
Overview of Previous Lesson(s) Over View  ASP.NET Pages  Modular in nature and divided into the core sections  Page directives  Code Section  Page.
Web Development Using ASP.NET CA – 240 Kashif Jalal Welcome to week – 4-1 of…
Web Programming: Client/Server Applications Server sends the web pages to the client. –built into Visual Studio for development purposes Client displays.
Elements of ASP Documents Adapted from MCDN Web Workshop ( and Webmonkey’s Introduction to Active.
ASP.NET Controls. Slide 2 Lecture Overview Identify the types of controls supported by ASP.NET and the differences between them.
11 Web Services. 22 Objectives You will be able to Say what a web service is. Write and deploy a simple web service. Test a simple web service. Write.
Introduction to ASP.NET MVC Information for this presentation was taken from Pluralsight Building Applications with ASP.NET MVC 4.
ASP.NET.. ASP.NET Environment ASP.NET is Microsoft's programming framework that enables the development of Web applications and services. It is an easy.
Introduction to Entity Framework Part 2 CRUD Scaffolding Tom Perkins NTPCUG.
CIS 451: ASP.NET Objects Dr. Ralph D. Westfall January, 2009.
Website Development with PHP and MySQL Saving Data.
1 © Netskills Quality Internet Training, University of Newcastle HTML Forms © Netskills, Quality Internet Training, University of Newcastle Netskills is.
Dr. Azeddine Chikh IS444: Modern tools for applications development.
Database Handling, Sessions, and AJAX. Post Back ASP.NET Functionality The IsPostBack method in ASP.NET is similar to the BlackBerry.refresh method –IsPostBack.
BIT 286: Web Applications Lecture 10 : Thursday, February 5, 2015 ASP.Net Form Submission.
Server-side Programming The combination of –HTML –JavaScript –DOM is sometimes referred to as Dynamic HTML (DHTML) Web pages that include scripting are.
 Registry itself is easy and straightforward in implementation  The objects of registry are actually complicated to store and manage  Objects of Registry.
BlackBerry Applications using Microsoft Visual Studio and Database Handling.
JAVA BEANS JSP - Standard Tag Library (JSTL) JAVA Enterprise Edition.
BIT 286: Web Applications Lecture 04 : Thursday, January 15, 2015 ASP.Net MVC -
 An essential supporting structure of any thing  A Software Framework  Has layered structure ▪ What kind of functions and how they interrelate  Has.
AJAX and REST. Slide 2 What is AJAX? It’s an acronym for Asynchronous JavaScript and XML Although requests need not be asynchronous It’s not really a.
Introduction  “M” “V” “C” stands for “MODEL” “VIEW” “CONTROLLER”. ASP.NET MVC is an architecture to develop ASP.NET web applications in a different manner.
Text INTRODUCTION TO ASP.NET. InterComm Campaign Guidelines CONFIDENTIAL Simply Server side language Simplified page development model Modular, well-factored,
Virtual techdays INDIA │ 9-11 February 2011 SESSION TITLE Kamala Rajan S │ Technical Manager, Marlabs.
BIT 286: Web Applications Lecture 04 : Thursday, January 15, 2015 ASP.Net MVC -
INTRODUCTION TO MVC BY SUHA MNEIMNEH. WHAT’S THE AGENDA What is MVC? MVC components MVC vs web forms vs ASP.NET vocabulary When to create MVC application.
Presented by Alexey Vedishchev Developing Web-applications with Grails framework American University of Nigeria, 2016 Form Submission And Saving Data To.
1 Using MVC 6. MVC vs. ASP Web Forms Both run under ASP.NET Can coexist In Web Forms, browser requests page. xxx.aspx and xxx.aspx.cs on the server Page.
Jim Fawcett CSE686 – Internet Programming Summer 2010
Jim Fawcett CSE686 – Internet Programming Spring 2014
ASP.NET Programming with C# and SQL Server First Edition
Computing with C# and the .NET Framework
Asp.Net MVC Conventions
An introduction to ASP.Net with MVC Nischal S
Unit 9.1 Learning Objectives Data Access in Code
JDBC Database Management Database connectivity
Jim Fawcett CSE686 – Internet Programming Spring 2012
Social Media And Global Computing Introduction to The MVC Pattern
ASP MVP Web applications and Razor
Data Virtualization Tutorial… CORS and CIS
Play Framework: Introduction
AJAX and REST.
Haritha Dasari Josue Balandrano Coronel -
CO6025 Advanced Programming
Active Server Pages ASP.Net
PHP / MySQL Introduction
Jim Fawcett CSE686 – Internet Programming Summer 2008
Introduction to Internet Programming
Chapter 23 – ASP.NET Outline 23.1 Introduction NET Overview
Anatomy of an ASP.NET Page
Controllers.
Web Development Using ASP .NET
Chapter 10 Accessing Database Files
Asp.Net MVC Conventions
Presentation transcript:

Jim Fawcett CSE686 – Internet Programming Spring 2014 Asp.Net mvc

What is Asp.Net MVC? Framework for building web applications Based on Model-View-Controller pattern Model manages the application data and enforces constraints on that model. Often accessed through persistent objects Views are mostly passive presentations of application state. Views generate requests sent to a controller based on client actions. Controllers translate requests into actions on the data model and generate subsequent views.

MVC Structure

MVC Life Cycle Clients request a named action on a specified controller, e.g.: http://localhost/aController/anAction The request is routed to aController’s anAction method. That method decides how to handle the request, perhaps by accessing a model’s state and returning some information in a view.

What is a Model? A model is a file of C# code and often an associated data store, e.g., an SQL database or XML file. The file of C# code manages all access to the application’s data through objects. Linq to SQL and Linq to XML create queries into these data stores This can be direct More often it is done through objects that wrap db tables or XML files and have one public property for each attribute column of the table.

One MVCGridDemos Model namespace MvcApplication2.Models { public class FileHandler public string path { get; set; } public string[] files { get; set; } public bool GetFiles(string pattern) try int pos = path.LastIndexOf("Home"); path = path.Substring(0, pos) + "Views\\Home"; files = System.IO.Directory.GetFiles(path); return true; } catch { return false; }

Adding a Model Right-click on Model folder and select Add Class. Populate the model class with public properties that represent data to be managed. Usually the model is persisted to an XML file or SQL database using LINQ or the Entity Data Framework.

What is a View? Views are usually cshtml files with only HTML and inline code, e.g., <% … C# code here … %>. Code is used just to support presentation and does no application processing. The HTML is augmented by HTML Helpers, provided by Asp.Net MVC that provide shortcuts for commonly used HTML constructs. Asp.Net MVC comes with jQuery (Javascript) libraries to support reacting to client actions and doing AJAX communication with the server.

Views are results of actions class myController : controller { ActionResult someMethod(ModelClass model) { // possibly do something to model ViewData[“key”] = “a message”; return View(model); } }

Script Blocks <% code to execute %> <%= string to write to Response %> <%: string to write to Response, gets HTML encoded %> <%$ AppSettings:Key %> <%# Eval(“Value”) %> renders bound property http://weblogs.asp.net/scottgu/archive/2010/04/06/new- lt-gt-syntax-for-html-encoding-output-in-asp-net-4-and- asp-net-mvc-2.aspx http://michielvoo.net/blog/expressions-vs-statements- part-2-asp-net-code-block-types/

Html Helpers ActionLink: links to an action method CheckBox DropDownList EditTextBox Hidden ListBox Password RadioButton TextArea TextBox

Adding a View Right-click on View folder select Add View and configure view from the resulting dialog. It’s easy to generate tables and lists that can be edited and posted back to the controller to effect changes to its model. The HTML helpers on the previous page make building a view a fairly simple process. The wizard for Strongly Typed views does most of the work in rendering model details.

What is a Controller? A controller is a C# class that derives from the class Controller. A controller defines some category of processing for the application. Its methods define the processing details. Routing to a controller is defined in the Global.Asax.cs file. Its default processing is usually what you need. You need to change the controller name to match the name of the default controller.

Data Binding If a controller method takes a model class as a parameter, then the MVC infrastructure will instantiate an instance and pass to the controller method when requested via a url. On postback, if View parameters have the same names as model names, then the MVC infrastructure uses reflection to bind current view values to the model.

MvcCRUDwithXML Controller Action methods

Action returns ActionResult ActionResult: base class ContentResult: user defined object to Response EmptyResult: Nothing to Response FileResult: Send binary file to Response RedirectResult: redirect to url RedirectToRouteResult: redirect using routes JasonResult: send json to Response JavaScriptResult: send Javascript to Response ViewResult: Render a view

Adding a Controller Right-click on the Controller folder and select Add Controller. Populate controller with methods whose names will become views and that take model parameters to supply views with data and react on postback to data changes made in view.

Web Application Development Create a new Asp.Net MVC project Delete any part of that you don’t need Add a controller for each category of processing in your application: A category is usually a few pages and db tables that focus on some particular application area Add methods to each controller for each request you wish to handle. Add views as needed for each controller action Add Model classes to support the application area: Each model class has public properties that are synchronized with data in the model db or XML file.

An Opinion This Asp.Net MVC structure is very flexible: You can have as many application categories as you need, simply by adding controllers. The controllers keep the application well organized. You can have as many views as you need. The navigation is simple and provided mostly by the MVC infrastructure, e.g., routing in Global.asax.cs. You can have as many models as you need. Just add classes and use Linq to access the data.

A Second Opinion Controller – as skinny as possible Controller Logic – fat & testable Model – data & formatting View – display/collect data

Things you need to know LINQ – Language integrated query Linq to XML and Linq to SQL are commonly used by models to provide data needed by a controller for one of its views. Jquery – Javascript Query library Jquery is frequently used by views to react to client actions in the browser. Jquery has facilities to use AJAX to retrieve small amounts of information from the server without loading a new view.

References Class Text: “Professional Asp.Net MVC 4” Asp.Net MVC Tutorials http://weblogs.asp.net/scottgu/archive/2007/11/13/asp-net-mvc-framework-part-1.aspx http://nerddinnerbook.s3.amazonaws.com/Intro.htm Linq: http://dotnetslackers.com/articles/csharp/introducinglinq1.aspx Jquery http://docs.jquery.com/Tutorials:How_jQuery_Works#jQuery:_The_Basics