Developing ASP.NET MVC 4 Web Applications

Corso

A Milano

Prezzo da consultare

Chiama il centro

Hai bisogno di un coach per la formazione?

Ti aiuterà a confrontare vari corsi e trovare l'offerta formativa più conveniente.

Descrizione

  • Tipologia

    Corso

  • Luogo

    Milano

  • Inizio

    Scegli data

Overview of Microsoft Web Technologies Overview of ASP.NET 4.5 Introduction to ASP.NET MVC 4 Exploring a Photo Sharing Application Exploring a Web Pages Application Exploring a Web Forms Application Exploring an MVC Application

Sedi e date

Luogo

Inizio del corso

Milano
Visualizza mappa
viale Piero e Alberto Pirelli 6, 20126

Inizio del corso

Scegli dataIscrizioni aperte

Domande e risposte

Aggiungi la tua domanda

I nostri consulenti e altri utenti potranno risponderti

Chi vuoi che ti risponda?

Inserisci i tuoi dati per ricevere una risposta

Pubblicheremo solo il tuo nome e la domanda

Opinioni

Materie

  • Web master
  • Visual Studio 2010
  • Server
  • Api
  • Visual studio 2008
  • HTTP
  • Jquery
  • Browser
  • Visual Studio
  • Windows
  • Testing
  • Web server
  • HTML
  • E-business

Programma

After completing this module, students will be able to:


describe the Microsoft Web Technologies stack and select an appropriate technology to use to develop any given application.


The goal of this module is to introduce students to the typical design process that architects must complete when they plan an MVC 4 application. At this stage in the design process, MVC 4 has been selected as the most appropriate programming model, but the details of the application, such as the overall architecture, Controllers, Views, Models, and routes to create, have not been fixed. How to plan such details is shown during this module.


Planning in the Project Design Phase


Designing Models, Controllers, and Views


Planning Models


Planning Controllers


Planning Views


Architecting an MVC Application


After completing this module, students will be able to:


design the architecture and implementation of a web application that will meet a set of functional requirements, user interface requirements, and address business models.


The goal of this module is to enable the students to create Models within an MVC application that implement the business logic necessary to satisfy business requirements. The module also describes how to implement a connection to a database, or alternative data store, using the Entity Framework and LINQ.


Creating MVC Models


Working with Data


Creating an MVC Project and Adding a Model


Creating a New SQL Azure Database in Visual Studio


Adding Properties and Methods to MVC Models


Using Display and Edit Annotations in MVC Models


After completing this module, students will be able to:


create MVC Models and write code that implements business logic within Model methods, properties, and events.


The goal of this module is to enable students to add Controllers to MVC applications and to implement actions that respond to user input and other events. The students will learn how Controllers relate to Models and how to implement Controller actions that define the View used to display or edit data. This module also covers how to write action filters that run code before or after multiple actions in the Controller. The students will learn about situations when action filters are useful.


Writing Controllers and Actions


Writing Action Filters


Adding an MVC Controller and Writing the Actions


Writing the Action Filters in a Controller


Using the Photo Controller


After completing this module, students will be able to:


add Controllers to an MVC Application to manage user interaction, update models, and select and return Views.


The goal of this module is to describe the role of Views in an MVC web application and enable users to create and code them. The syntax of a Razor View is of critical importance for students to understand because it defines both the layout and the functionality of the data display. HTML Helpers will also be discussed in detail and common Helpers, such as Html.ActionLink() and Html.EditorFor(), will be described. Reusing code by defining Partial Views and Razor Helpers will be discussed as well.


Creating Views with Razor Syntax


Using HTML Helpers


Reusing Code in Views


Adding a View for Photo Display


Adding a View for New Photos


Creating and Using a Partial View


Adding a Home View and Testing the Views


After completing this module, students will be able to:


create Views in an MVC application that display and edit data and interact with Models and Controllers.


The goal of this module is to enable students to increase the resilience and quality of an application by locating and correcting code errors, bugs, and other unexpected results. MVC applications are well suited to unit testing techniques and these techniques ensure a high quality of code by systematically testing the functionality of each small component. In addition the debugging tools and exception handling available in Visual Studio will be explained.


Unit Testing MVC Components


Implementing an Exception Handling Strategy


Performing Unit Tests


Configuring Exception Handling


After completing this module, students will be able to:


run unit tests and debugging tools against a web application in Visual Studio 2012 and configure an application for troubleshooting.


The goal of this module is to enable students to structure a web application in such a way that users can rapidly locate the information they need. Two aspects of the design are emphasized: the URLs presented in the browser address bar should be understandable and can be controlled by adding routes to the ASP.NET Routing Engine, and the navigation controls, such as menus and breadcrumb trails, should present the most relevant links to frequently read pages. Search Engine Optimization is important throughout this module.


Analyzing Information Architecture


Configuring Routes


Creating a Navigation Structure


Using the Routing Engine


Building Navigation Controls


After completing this module, students will be able to:


develop a web application that uses the ASP.NET routing engine to present friendly URLs and a logical navigation hierarchy to users.


The goal of this module is to explore how students can impose a consistent look and feel to an MVC application and share other common components, such as headers and footers, between all Views. Besides describing CSS styles and template views, the module will discuss how to migrate a look and feel created by a web designer into an MVC application. Techniques for adapting the display of a site for small screens and mobile devices will also be introduced.


Using Template Views


Applying CSS to an MVC Application


Creating an Adaptive User Interface


Using Template Views


Applying a Consistent Look and Feel to an MVC Application


Adapting Web Pages for Different Browsers


After completing this module, students will be able to:


implement a consistent look and feel, including corporate branding, across an entire MVC web application.


The goal of this module is to describe to the students how partial page updates and caching can optimize the responsiveness of a web application. Students will see how to make use of AJAX helpers and partial views to update small portions of a page instead of refreshing the entire page. The module also covers the different caches developers can use to store rendered pages and discusses how to configure caching for maximum performance.


Using AJAX and Partial Page Updates


Implementing a Caching Strategy


Using Partial Page Updates


Configuring the ASP.NET Caches


After completing this module, students will be able to:


use partial page updates and caching to reduce the network bandwidth used by an application and accelerate responses to user requests.


The goal of this module is to teach the students techniques that run code on the browser. This approach can increase the responsiveness of the application because a rendered page can respond to a user action without reloading the entire page from the server. Students will learn about the jQuery script library and how to use it to call web services and update user interface components.


Rendering and Executing JavaScript Code


Using jQuery and jQueryUI


Using jQuery to Respond to Users


Using jQueryUI to Build a User Interface


After completing this module, students will be able to:


write JavaScript code that runs on the client-side and utilizes the jQuery script library to optimize the responsiveness of an MVC web application.


The goal of this module to ensure good security in terms of strong authentication and authorization for access. The lessons describe how to enable anonymous users to create their own user account and gain privileged access to content.


Implementing Authentication and Authorization


Assigning Roles and Membership


Configuring Authentication and Membership Providers


Building the Logon and Register Views


Authorizing Access to Resources


Building a Password Reset View


After completing this module, students will be able to:


implement a complete membership system in an MVC 4 web application.


The goal of this module is to enable the students to build applications that are stable and reliable. Such applications are not vulnerable to common hacking techniques such as cross-site scripting and also store state information such as the contents of a shopping cart and user preferences. This state information is preserved when servers or browsers restart, connections are lost, and other connectivity issues occur.


Developing Secure Sites


State Management


Storing User Preferences


Using User Preferences in the Photo Gallery


After completing this module, students will be able to:


build an MVC application that resists malicious attacks and persists information about users and preferences.


The goal of this module is to introduce Windows Azure to the students and explain why a developer would write a Windows Azure service instead of code in a web application. Students will also see how to write such a service and call it from a web application or from other applications, such as a mobile device app.


Introducing Windows Azure


Designing and Writing Windows Azure Services


Consuming Windows Azure Services in a Web Application


Creating and Coding a Windows Azure Service


Consuming Data from a Windows Azure Service


After completing this module, students will be able to:


describe how to write a Windows Azure web service and call it from and MVC application.


The goal of the module is to introduce the concept of a Web API to students and to describe how to make an application’s core functionality more broadly available for integration into other web and mobile applications. Students will learn about the new Web API feature of MVC 4 and see how to build a RESTful Web API and call it from other applications.


Developing a Web API


Calling a Web API from Mobile and Web Applications


Developing a Web API in MVC 4


Adding Routes and Controllers to Handle REST Requests


Call RESTful services from Client-Side Code


After completing this module, students will be able to:


describe what a Web API is and why developers might add a Web API to an application.


The goal of this module is to describe how to write components that intercept requests from browsers before they are received by MVC Controllers. These components include HTTP Modules, HTTP Handlers, and the Web Sockets protocol. The module describes scenarios in which developers use such components and shows how to add them to an MVC application.


Using HTTP Modules and HTTP Handlers


Using Web Sockets


Writing a Web Handler that Uses Web Sockets


Building a Chat Room in The Photo Sharing Application


After completing this module, students will be able to:


modify the way browser requests are handled by an MVC application.


The goal for this module is to enable students to deploy a completed MVC application to a web server or Windows Azure. The module begins by describing testing, staging, and production deployments and the web server environments required for each. It also describes the advantages and disadvantages of using Windows Azure to host the application. Students also see all the available deployment options in Visual Studio.


Deploying a Web Application


Deploying an MVC 4 Application


Deploying an Application to Windows Azure


Test the Completed Application


After completing this module, students will be able to:


describe how to package and deploy an ASP.NET MVC 4 web application from a development computer to a web server for staging or production.


Chiama il centro

Hai bisogno di un coach per la formazione?

Ti aiuterà a confrontare vari corsi e trovare l'offerta formativa più conveniente.

Developing ASP.NET MVC 4 Web Applications

Prezzo da consultare