MTS20486

Leermethode

Deze normaal 5 daagse trainingen wordt uitgevoerd in 4 verlengde klassikale trainingsdagen verspreid over 2 weken.

Samenvatting

Course Description
In this course, students will learn to develop advanced ASP.NET MVC applications using .NET Framework 4.5 tools and technologies. The focus will be on coding activities that enhance the performance and scalability of the Web site application. ASP.NET MVC will be introduced and compared with Web Forms so that students know when each should/could be used. This course will also prepare the student for exam 70-486.

At Course Completion
After completing this course, students will be able to:

Doelgroep

Software Development

Voorkennis

Before attending this course, students must have:
A minimum of two to three years of experience developing web-based applications by using Microsoft Visual Studio and Microsoft ASP.NET, proficiency in using the .NET Framework, and some familiarity with the C# language.

Inhoud

Module 1: Exploring ASP.NET MVC 5
The goal of this module is to outline to the students the components of the Microsoft Web Technologies stack, which can be used to host a completed web application. Students will also learn about ASP.NET and be introduced to the web forms, web pages, and MVC programming models. Finally they will see an overview of ASP.NET MVC 5, including new features and configuration.
Lessons Lab : Exploring ASP.NET MVC 5 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.

Module 2: Designing ASP.NET MVC 5 Web Applications


The goal of this module is to introduce students to the typical design process that architects must complete when they plan an MVC 5 application. At this stage in the design process, MVC 5 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.
Lessons Lab : Designing ASP.NET MVC 5 Web Applications 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.

Module 3: Developing ASP.NET MVC 5 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.
Lessons Lab : Developing ASP.NET MVC 5 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.

Module 4: Developing ASP.NET MVC 5 Controllers


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.
Lessons Lab : Developing ASP.NET MVC 5 Controllers 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.

Module 5: Developing ASP.NET MVC 5 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.
Lessons Lab : Developing ASP.NET MVC 5 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

Module 6: Testing and Debugging ASP.NET MVC 5 Web Applications


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.
Lessons Lab : Testing and Debugging ASP.NET MVC 5 Web Applications After completing this module, students will be able to:

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

Module 7: Structuring ASP.NET MVC 5 Web Applications


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.
Lessons Lab : Structuring ASP.NET MVC 5 Web Applications 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.

Module 8: Applying Styles to ASP.NET MVC 5 Web Applications


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.
Lessons Lab : Applying Styles to ASP.NET MVC 5 Web Applications After completing this module, students will be able to:

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

Module 9: Building Responsive Pages in ASP.NET MVC 5 Web Applications


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.
Lessons Lab : Building Responsive Pages in ASP.NET MVC 5 Web Applications 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.

Module 10: Using JavaScript and jQuery for Responsive MVC 5 Web Applications


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.
Lessons Lab : Using JavaScript and jQuery for Responsive MVC 5 Web Applications 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.

Module 11: Controlling Access to ASP.NET MVC 5 Web Applications


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.
Lessons Lab : Controlling Access to ASP.NET MVC 5 Web Applications After completing this module, students will be able to:

Implement a complete membership system in an MVC 5 web application.

Module 12: Building a Resilient ASP.NET MVC 5 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.
Lessons Lab : Building a Resilient ASP.NET MVC 5 Web Application After completing this module, students will be able to:

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

Module 13: Implementing Web APIs in ASP.NET MVC 5 Web Applications


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 5 and see how to build a RESTful Web API and call it from other applications.
Lessons Lab : Implementing Web APIs in ASP.NET MVC 5 Web Applications 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.

Module 14: Handling Requests in ASP.NET MVC 5 Web Applications


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.
Lessons Lab : Handling Requests in ASP.NET MVC 5 Web Applications After completing this module, students will be able to:

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

Module 15: Deploying ASP.NET MVC 5 Web Applications


The goal for this module is to enable students to deploy a completed MVC application to a web server or Microsoft 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 Microsoft Azure to host the application. Students also see all the available deployment options in Visual Studio.
Lessons Lab : Deploying ASP.NET MVC 5 Web Applications After completing this module, students will be able to:

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

Examen(s)

70-486 Developing ASP.NET MVC 4 Web Applications

Inschrijfformulier

Bedrijfsnaam
Adres
Postcode en plaats
Telefoon
Contactpersoon
Emailadres contactpersoon
Factuur adres
Contactpersoon facturatie
Eventueel inkoopnummer
OpleidingsprogrammaPrijsStartdatum
MTS20486 € 2.095,00__ - ___ - _____
Standaard levert @The Academy de cursusboeken digitaal (DMOC). Voor aanvang van de cursus ontvangt u een code waarmee u het digitale lesboek kunt activeren. U krijgt de keuze om het boek online te lezen of te downloaden op 3 verschillende devices zodat u altijd direct de beschikking heeft over het boek.
Neem uw eigen “device” mee om het lesmateriaal te kunnen gebruiken tijdens de klassikale training.
Ik wil deze training graag op afstand virtueel bijwonenKruis hier aan
Naam cursist
Email adres cursist
Ondergetekende is tekeningsbevoegd en verklaart zich akkoord met de cursusvoorwaarden, deze staan op onze website:www.the-academy.nl/algemenevoorwaarden.
NaamHandtekeningDatum
__ - ___ - _____
Betalingsvoorwaarden:
Facturatie: 100% bij opdracht.
Betalingstermijn: 10 werkdagen voor aanvang opleiding
Alle vermelde prijzen zijn exclusief BTW.

De opdracht wordt aan @The Academy B.V. verstrekt door middel van ondertekening van dit inschrijfformulier. U kunt uw ondertekende opdrachtbevestiging per e-mail versturen aan inschrijven@the-academy.nl

Wij danken u voor het in ons gestelde vertrouwen.