Close
Contact Us info@learnquest.com

??WelcomeName??
??WelcomeName??
« Important Announcement » Contact Us 877-206-0106 | USA Flag
Close
Close
Close
photo

Thank you for your interest in LearnQuest.

Your request is being processed and LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

photo

Thank you for your interest in Private Training.

We look forward to helping you develop the perfect training solution to help you meet your company's goals.

For immediate assistance, speak with one of our representatives using the chat module below. Otherwise, LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

Close
photo

Thank you for your interest in LearnQuest!

Now, you will be able to stay up-to-date on our latest course offerings, promotions, and training discounts. Watch your inbox for upcoming special offers.

title

Date: xxx

Location: xxx

Time: xxx

Price: xxx

Please take a moment to fill out this form. We will get back to you as soon as possible.

All fields marked with an asterisk (*) are mandatory.

ASP.NET Core MVC

Price
1 030 EUR
2 Days
WDVS-105-NO
Classroom Training, Online Training
Microsoft

AWS Training Pass

Take advantage of flexible training options with the AWS Training Pass and get Authorized AWS Training for a full year.

Learn More

Prices reflect a 22.5% discount for IBM employees (wherever applicable).
Prices reflect a 24% discount for Kyndryl employees (wherever applicable).
Prices reflect the Accenture employee discount.
Prices shown are the special AWS Partner Prices.
Prices reflect the Capgemini employee discount.
Prices reflect the UPS employee discount.
Prices reflect the ??democompanyname?? employee discount.
GSA Private/Onsite Price: ??gsa-private-price??
For GSA pricing, please go to GSA Advantage.
 

Class Schedule

Delivery Formats

Sort results

Filter Classes

Guaranteed to Run

Modality

Location

Language

Date

    Sorry, there are no public classes currently scheduled in your country.

    Please complete this form, and a Training Advisor will be in touch with you shortly to address your training needs.

View Global Schedule

Course Description

Overview

This course provides a practical hands-on introduction to developing Web applications using ASP.NET Core 5.0 MVC and C#. This Web development framework from Microsoft emphasizes separation of concerns in the architecture and testability of applications. This course covers development on Microsoft’s new .NET Core platform. The course is current to .NET 5.0, which is a major update of .NET Core and is the foundation for future Microsoft .NET development. This course covers the fundamentals of the Model-View-Controller design pattern and its implementation in ASP.NET Core MVC. This technology is compared with classical ASP.NET Web Forms. Visual Studio 2019 is used as a productive platform for creating MVC Web applications. After presenting the fundamentals of the technology with several examples, the main components of Model, Controller and View are covered in detail. The discussion of the Model incorporates Microsoft technologies for persisting data, including XML Serialization and ADO.NET with SQL Server 2016. The routing mechanism of ASP.NET MVC is covered. The course includes an introduction to ASP.NET Web API and deployment on the Azure cloud. Numerous programming examples and exercises are provided. The student will receive a comprehensive set of notes and all the programming examples.
 

Objectives

At the end of the series, you'll
  • Learn structure of ASP NET MVC Core
  • Learn structure of ASP NET Core
  • Learn fundamentals of ASP NET MVC Core

Audience

Experienced application developers or architects responsible for Web applications in a Microsoft environment.
 

Prerequisites

    The student should have a good working knowledge of C# and the .NET Framework. Basic knowledge of HTML and some prior exposure to .NET Core would also be helpful.
     

Topics

  • Introduction to ASP.NET Core MVC
    • Review of ASP.NET Web Forms
    • Advantages of ASP.NET Web Forms
    • Disadvantages of ASP.NET Web Forms
    • Model-View-Controller Pattern
    • ASP.NET MVC
    • ASP.NET Core
    • What is .NET Core?
    • Advantages of ASP.NET MVC
    • ASP.NET MVC Considerations
    • Goals of ASP.NET MVC
    • ASP.NET Core 5.0
    • Unit Testing
    • Summary
  • Getting Started with ASP.NET Core MVC
    • An ASP.NET Core MVC Testbed
    • Visual Studio ASP.NET MVC Demo
    • Starter Application
    • Simple App with Controller Only
    • Startup.cs
    • Edit Startup.cs
    • Action Methods and Routing
    • Action Method Return Type
    • Rendering a View
    • Creating a View
    • The View Web Page
    • Dynamic Output
    • Razor View Engine
    • Embedded Scripts
    • Embedded Script Example
    • Using a Model with ViewBag
    • Controller Using Model and ViewBag
    • View Using Model and ViewBag
    • Using Model Directly
    • Passing Parameters in Query String
    • Lab 2
    • Summary
  • ASP.NET MVC Architecture
    • The Controller in ASP.NET MVC
    • The View in ASP.NET MVC
    • The Model in ASP.NET MVC
    • How MVC Works
    • Using Forms
    • HTML Helper Functions
    • Handling Form Submission
    • Model Binding
    • Greet View
    • Input Validation
    • Nullable Type
    • Checking Model Validity
    • Validation Summary
    • Lab 3
    • Summary
  • The Model
    • Complex Models
    • MvcBooks Example
    • The View
    • The Model: Book and Category
    • The Model: DB
    • MvcBooks - Step 2
    • Books by Category
    • Books by Category - View
    • Running Step 2
    • Microsoft Technologies for the Model
    • XML Serialization Demo
    • Running the Starter Code
    • XML Serialization: Save
    • Deserialization
    • XML Serialization
    • What Will Not Be Serialized
    • Lab 4
    • XML as a Data Store
    • MvcBooks - Model
    • Save()
    • Restore()
    • AddCategory()
    • MvcBooks - Controller
    • Adding a Category
    • View for Adding a Category
    • Running the Example
    • SmallPub Database
    • Using ADO.NET
    • Model
    • Controller and View
    • Running the Database Example
    • Summary
  • The Controller
    • Controller Base Class
    • Controller Base Class
    • Action Methods
    • Action Method Example
    • Index() Action Method
    • Info() Action Method
    • Info.cshtml
    • Running the Example
    • Receiving Input
    • Binding Example
    • Non-Nullable Parameters
    • Nullable Parameters
    • Using a Model
    • Action Results
    • Action Result Example
    • Output Demo
    • JavaScript Object Notation
    • Serving Static Files
    • Action Method Attributes
    • Lab 5
    • Filters
    • Asynchronous Controllers
    • Summary
  • The View
    • View Responsibility
    • A Program with a View
    • View Page
    • Passing Data to the View
    • Dynamic and ExpandoObject
    • Passing Lists to the View
    • HTML Helper Methods
    • Link-Building Helpers
    • Form Helpers
    • Html Helper Example
    • Validation Helpers
    • Templated Helpers
    • Validation in Model
    • Validation in Controller
    • ValidtionMessage Helper
    • Running the Example
    • Lab 6
    • Summary
  • Routing
    • ASP.NET Routing
    • Routing in ASP.NET Core MVC
    • Simple Route Example
    • Math Controller
    • Default Values for URL Parameters
    • Using a Default Route
    • Home Controller
    • Assigning Parameter Values
    • Controller Code
    • View Code
    • Running the Example
    • Properties of Routes
    • Optional Parameter
    • Matching URLs to Route
    • Defaults
    • Multiple Routes Example
    • Attribute Routing
    • Combining Routes
    • Empty String for Route Attribute
    • Token Replacement
    • Summary
  • ASP.NET Core Web API
    • ASP.NET Core Web API
    • REST
    • Representation, State and Transfer
    • Collections and Elements
    • Web API Demo
    • Strings Controller
    • Project Settings
    • HTTP Testing Tools
    • Using Postman
    • Implementing and Testing POST
    • Lab 8A
    • HTTP Response Codes
    • Testing Improved Code for GET
    • POST Response Code
    • Named Route
    • Testing Improved Code for POST
    • Location Header
    • Response Code for PUT and DELETE
    • Web API Clients
    • HttpClient
    • Initializing HttpClient
    • Issuing a GET Request
    • Issuing a POST Request
    • Lab 8B
    • Summary
  • ASP.NET Core and Azure
    • What is Windows Azure?
    • A Windows Azure Testbed
    • Windows Azure Demo
    • Publish to Azure
    • Web Deployment Completed
    • Modifying a Web Application
    • Deploy to Original Site
    • A Deployed Application
    • Lab 9
    • Summary
  • Appendix A Learning Resources
     
  • 2023 Top 20 Training Industry Company - IT Training

    Need Help?

    Call us at 877-206-0106 or e-mail us at info@learnquest.com

    Personalized Solutions

    Need a personalized solution for your Training? Contact us, and one of our training advisors will help you find the best solution.

    Contact Us

    Need Help?

    Do you have a question about the courses, instruction, or materials covered? Do you need help finding which course is best for you? We are here to help!

    Talk to us

    20% Off All Project Management Training Courses

    Maximize project efficiency and profitability across the board.

    PROMO CODE: PROJECT20
    VALID THROUGH JUNE 30, 2024

    20% Off All AI Training Courses

    IBM TechXchange Conference 2024

    October 21-24 | Mandalay Bay, Las Vegas

    Save $127 with Code: TECHXCHANGE10

    Offer Expires June 30, 2024

    Self-Paced Training Info

    Learn at your own pace with anytime, anywhere training

    • Same in-demand topics as instructor-led public and private classes.
    • Standalone learning or supplemental reinforcement.
    • e-Learning content varies by course and technology.
    • View the Self-Paced version of this outline and what is included in the SPVC course.
    • Learn more about e-Learning

    Course Added To Shopping Cart

    bla

    bla

    bla

    bla

    bla

    bla

    Self-Paced Training Terms & Conditions

    ??spvc-wbt-warning??
    ??group-training-form-area??
    ??how-can-we-help-you-area??
    ??personalized-form-area??
    ??request-quote-area??

    Sorry, there are no classes that meet your criteria.

    Please contact us to schedule a class.
    Close

    self-paced
    STOP! Before You Leave

    Save 0% on this course!

    Take advantage of our online-only offer & save 0% on any course !

    Promo Code skip0 will be applied to your registration

    Close
    Nothing yet
    here's the message from the cart

    To view the cart, you can click "View Cart" on the right side of the heading on each page
    Add to cart clicker.

    Purchase Information

    ??elearning-coursenumber?? ??coursename??
    View Cart

    Need more Information?

    Speak with our training specialists to continue your learning journey.

     

    Delivery Formats

    Close

    By submitting this form, I agree to LearnQuest's Terms and Conditions

    heres the new schedule
    This website uses third-party profiling cookies to provide services in line with the preferences you reveal while browsing the Website. By continuing to browse this Website, you consent to the use of these cookies. If you wish to object such processing, please read the instructions described in our Privacy Policy.
    Your use of this LearnQuest site affirms your consent to our use of session and persistent cookies to track how you use our website.