Building Effective Websites using Microsoft MVC Training in Sweden

  • Learn via: Classroom
  • Duration: 5 Days
  • Level: Intermediate
  • Price: From €6,708+VAT
We can host this training at your preferred location. Contact us!

The course takes existing .NET developers and provides them with the necessary skills to develop modern MVC webbased applications, using Visual Studio 2022 and the ASP.NET Core 8.0.

  • Delegates should have basic knowledge of HTML and web page creation using JavaScript and CSS. These skills can be obtained by attending QA's Web Development Fundamentals - HTML and CSS course, and Web Development Fundamentals - Javascript course.
  • Delegates should have existing knowledge of at least C#4 (including LINQ/Lambdas) and have worked with the .NET Framework for 3 months minimum. (VB.NET delegates should be comfortable reading C#).
  • Delegates without these skills would benefit from attending the QA C# programming language course.
  • Delegates are not required to have any experience in ASP.NET WebForms development.
  • Please note: Before attending this class delegates must have a Microsoft account (signing up one is free). The instructions on how to set up a Microsoft account can be found here.

Module 1: Necessary C#

This is a 'refresh' chapter for those not confident with C#

It is brief and only intended as a refresh - not a 'learn from cold'.

There is no lab.

Module 2: Web Basics

This is a 'refresh' chapter for those not confident with web terminology.

It is brief and only intended as a refresh - not a 'learn from cold'.

There is no lab.

Module 3: Quick Tour around ASP.Net Core

In this module, delegates learn about the separation of concerns, working with Models, Controllers and Views to understand how a MVC application is structured and how the different parts interact with the routing engine to resolve a client request.

Lessons:

  • The MVC Pattern
  • Models, Views, and Controllers ASP.NET MVC Conventions MVC Project structure
  • Visual Studio 2022 support
  • Nuget

Lab:

  • Creating an ASP.NET MVC project using Visual Studio 2022

After completing this module delegates will:

  • Have gained a high-level overview of how to build an MVC-5.2.9 application.

Module 4: Dependency Injection and Configuration

Delegates will get an overview of Dependency Injection and how it is used within an ASP.NET Core application.

Lessons:

  • Dependency Injection
  • Dependency Injection in .Net Core
  • Registering and Injection
  • Injection of Configuration Options
  • The MVC Request cycle

After completing this module delegates will

  • Understand the importance and usage of Dependency Injection.
  • Know how to use and configure Dependency Injection in an ASP.NET Core application.

Module 5: Entity Framework

Because Entity Framework is such an important part of most MVC applications, we cover the topic before exploring models.

Lessons:

  • The main features of Entity Framework
  • CodeFirst / CodeFirst from Database
  • Lazy / Eager / Explicit loading
  • Linq To Entities
  • Initialization and Migration
  • Using Stored Procs

Labs:

  • CodeFirst and loading options.
  • (Optional) Initialization and Migration

After completing this module delegates will:

  • Know the different strategies available in Entity Framework
  • Know how and when to use Initialization and Migration

Module 6: Controllers and Actions

Delegates learn how to structure and build controllers for key entities by learning how to write actions that return views for different scenarios. The usage of the Http Get and Post verbs in building forms is discussed.

Lessons:

  • What is a controller? Action and parameters
  • Returning Results from Actions Passing data to views Asynchronous Actions Processing HTTP Forms

Lab:

  • Building controller classes

After completing this module delegates will:

  • Understand the role of the controller.
  • Be able to write Actions to process requests.

Module 7: Unit Testing Controllers

This module teaches delegates to use Visual Studio Unit Testing capabilities to carry out unit testing on Controllers.

Lessons:

  • Unit Testing Overview
  • Understanding Entity Framework Configuration
  • In-memory Databases

Lab:

  • Create a unit test for a Controller

After completing this module delegates will:

  • Know how to implement Unit Tests using Visual Studio

Module 8: Views

Delegates create views and partial views using the Razor engine. They will learn how to render client-side mark-up, based on what the Controller's request and the Model sends. Delegates learn how to create master layout pages to enforce a consistent layout and style across a website, plus how to implement forms for the websites 'Create', 'Update' and 'Delete' pages.

Lessons:

  • Views
  • Razor Syntax
  • HTML Helpers and Tag Helpers
  • Layout pages
  • Partial Views and View Components
  • Templates

Lab:

  • Implementing views

After completing this module delegates will:

  • Be able to use the Razor engine to render views and partial views.
  • Create master layout pages for a consistent look and feel.
  • Use Helper methods to generate client-side mark-up.
  • Know how to access model data from within Views.

Module 9: Bootstrap

In this module delegates work with Bootstrap. They will use the various Bootstrap styles to customise the look and feel of a website. Become familiar with the Bootstraps grid system to control the layout of content and how bootstrap provides a responsive design.

Lessons:

  • Bootstrap getting started
  • Bundling and Minification
  • Bootstraps responsive design
  • Bootstrap components

Lab:

  • Styling webpages with Bootstrap

After completing this module delegates will:

  • Know how to use the Bootstrap UI Framework
  • Be able to create mobile-first responsive web pages

Module 10: Validation

Delegates will learn to use data annotation attributes to provide validation for the model data. They use html helpers to provide validation assistance within views.

Lessons:

  • Data Annotations and Validation Attributes Preventing JavaScript Injection attacks

Lab:

  • Model Validation

After completing this module delegates will:

  • Understand the Model Binding process.
  • Be able to use Data Annotations and Validation attributes within model classes

Module 11: Error Handling

Delegates will learn how to protect a MVC application from script injection attacks, and how to implement custom exception handling within the application.

Lessons:

  • Error handling
  • Exception bubbling
  • The default error page
  • Error filters

Lab:

  • Error handling

After completing this module delegates will:

  • Provide custom error handling for a MVC application.

Module 12: Routing

Delegates learn how to create routes that map URLs to controller actions using both convention-base routing and attribute based routing. They will implement routing constraints to ensure that routes contain the expected data. Also included is how to unit test routes.

Lessons:

  • What are routes? Defining and using routes
  • Convention-based Routing Attribute-based Routing

Lab:

  • Configuring and de-bugging routes

After completing this module delegates will:

  • Understand the purpose of routes.
  • Know how to add literals and constraints to routes.
  • Know the benefit of Areas.

Module 13: Web API

Delegates learn when and how to create a restful service using Web API 2.2. They will learn to use Postman to help test and debug Web API 2.2 during development and how to call a Web API from multiple clients.

Lessons:

  • What is Web API
  • HTTP Request, Response and Methods
  • Content Negotiation
  • Controllers
  • Data Transfer Objects
  • Using Postman

Lab:

  • Creating and calling Web API Services

After completing this module delegates will:

  • Understand the Web API framework
  • Learn about the HTTP requests and responses
  • Know how to create a Web API
  • Be able to consume a Web API from a variety of devices

Module 14: State

Delegates learn about the various ways of maintaining state within a web server, how different state options affect the scalability of an application, and how to use page output caching and application caching service providers to improve application performance.

Lessons:

  • HTTP as a stateless protocol
  • Cookies
  • Session state and TempData

Lab:

  • Managing and maintaining state

After completing this module delegates will:

  • Understand the various techniques for state management.

Module 15: Razor Pages

Delegates will learn about Razor Pages, a lightweight alternative to the MVC architecture.

Lessons:

  • What are Razor Pages
  • Enabling and Creating Razor Pages
  • Page Models, Handlers and Model Binding
  • Data Validation and Error Handling

Lab:

  • Add Razor Pages to you application

Module 16: Security

Module 16 examines the ASP.NET Identity infrastructure that is added automatically when creating new MVC projects.

Delegates will see the security options available and also how to configure, integrate and extend ASP.NET Identity.

Lessons:

  • Authentication
  • Authorisation
  • Managing Users
  • Identity User Interface
  • Other Authentication Schemes

Lab:

  • Add security to your application, including policies
  • Customise the security system
  • Use JWT to authorise Web API

After completing this module, the delegates will:

  • Understand the security infrastructure provided in MVC

Module 17: Deployment

The delegates learn about the different deployment options available. They learn how to create deployment packages to deploy MVC applications into IIS and Azure, and how to use configuration transforms to modify web.config during deployment.

Lessons:

  • Deployment Options
  • Web Deployment Tool
  • Working with Packages
  • Configuring Deployment Options
  • Applying Transforms
  • Deploying Web Applications to Azure

Lab:

  • Deploy ASPNET.Core Application

After completing this module delegates will:

  • Know how to deploy ASP.NET Core applications to hosting servers and Microsoft's Azure

How to create and configure deployment profiles



Contact us for more detail about our trainings and for all other enquiries!

Upcoming Trainings

Join our public courses in our Sweden facilities. Private class trainings will be organized at the location of your preference, according to your schedule.

Classroom / Virtual Classroom
04 suoidnemánnu 2024
Stockholm, Malmö, Göteborg
5 Days
Classroom / Virtual Classroom
15 suoidnemánnu 2024
Stockholm, Malmö, Göteborg
€6,708 +VAT Book Now
Classroom / Virtual Classroom
08 borgemánnu 2024
Stockholm, Malmö, Göteborg
5 Days
Classroom / Virtual Classroom
19 borgemánnu 2024
Stockholm, Malmö, Göteborg
5 Days
Classroom / Virtual Classroom
21 borgemánnu 2024
Stockholm, Malmö, Göteborg
5 Days
Classroom / Virtual Classroom
05 čakčamánnu 2024
Stockholm, Malmö, Göteborg
5 Days
Classroom / Virtual Classroom
12 golggotmánnu 2024
Stockholm, Malmö, Göteborg
5 Days
Classroom / Virtual Classroom
16 golggotmánnu 2024
Stockholm, Malmö, Göteborg
5 Days
Building Effective Websites using Microsoft MVC Training Course in Sweden

Sweden is a Nordic country that borders Norway, Finland and Denmark. The name "Sweden" originated from the "Svear", a people mentioned by the Roman author Tacitus. While being the largest Nordic country, Sweden is the fifth-largest country in Europe. Sweden has a total population of 10.4 million. The capital and largest city is Stockholm. About 15 percent of the country lies within the Arctic Circle, so that's why from May until mid-July, sunlight lasts all day in the north of the Arctic Circle. On the other hand, during December, the capital citt experiences only about 5.5 hours of daylight.

When in Sweden, visiting Stockholm's Old Town Gamla Stan, Sweden's most popular museum Vasa Museum and a UNESCO World Heritage Site; Drottningholm Palace is highly recommended.

Empower yourself with our extensive selection of IT courses, covering programming, data analytics, software development, business skills, cloud computing, cybersecurity, project management. Experience personalized training and expert guidance from our instructors, who will come to your chosen training venue anywhere in Sweden.
By using this website you agree to let us use cookies. For further information about our use of cookies, check out our Cookie Policy.