HOME > Development > Mastering ASP.NET Core MVC From Scratch Using C#

Mastering ASP.NET Core MVC From Scratch Using C#

  • Development
  • Mar 16, 2025
SynopsisMastering ASP.NET Core MVC From Scratch Using C#, available a...
Mastering ASP.NET Core MVC From Scratch Using C#  No.1

Mastering ASP.NET Core MVC From Scratch Using C#, available at $54.99, has an average rating of 4.85, with 173 lectures, based on 286 reviews, and has 1525 subscribers.

You will learn about Learn Key Features of ASP . NET Core Platform like MiddleWare Components,Request Pipe Line,Services Learn How to Develop Web Applications using MVC Core Architectural Pattern Learning all about Entry Point & StartUp class of ASP . NET Core MVC Web Application Learn How to add Custom MiddleWare to Request PipeLine Learn How to work with Controllers Learn How to use Various IActionResults Learn different State Management Techniques Learn How to use Scaffolding Templates Learn How to work with HTML Forms using Form Tag Helpers Learn How to Perform Validations with Annotations Learning all about Default Model Binding Learn How to work with Dependency Injection Learn How to Work with Configuration Service and User Secrets Learn How to work with Logging Service Learn How to Work with Filters Learn How to implement Customized Exception Handling Mechanism Learn How to Develop View Components Learn How to Create Custom Tag Helpers Learn How to use Built In Tag Helpers Learn How to use Areas Learn How to develop data driven Pages using Entity Framework Core Learn How to Develop and Consume Web API Core Learn How to work with Identity Core Framework Learn How to Deploy ASP . NET Core MVC Web Application This course is ideal for individuals who are This course is designed for individuals with an intermediate knowledge of C#. Knowledge of earlier versions of ASP . NET MVC will be an added advantage. It is particularly useful for This course is designed for individuals with an intermediate knowledge of C#. Knowledge of earlier versions of ASP . NET MVC will be an added advantage.

Enroll now: Mastering ASP.NET Core MVC From Scratch Using C#

Summary

Title: Mastering ASP.NET Core MVC From Scratch Using C#

Price: $54.99

Average Rating: 4.85

Number of Lectures: 173

Number of Published Lectures: 162

Number of Curriculum Items: 173

Number of Published Curriculum Objects: 162

Original Price: $39.99

Quality Status: approved

Status: Live

What You Will Learn

  • Learn Key Features of ASP . NET Core Platform like MiddleWare Components,Request Pipe Line,Services
  • Learn How to Develop Web Applications using MVC Core Architectural Pattern
  • Learning all about Entry Point & StartUp class of ASP . NET Core MVC Web Application
  • Learn How to add Custom MiddleWare to Request PipeLine
  • Learn How to work with Controllers
  • Learn How to use Various IActionResults
  • Learn different State Management Techniques
  • Learn How to use Scaffolding Templates
  • Learn How to work with HTML Forms using Form Tag Helpers
  • Learn How to Perform Validations with Annotations
  • Learning all about Default Model Binding
  • Learn How to work with Dependency Injection
  • Learn How to Work with Configuration Service and User Secrets
  • Learn How to work with Logging Service
  • Learn How to Work with Filters
  • Learn How to implement Customized Exception Handling Mechanism
  • Learn How to Develop View Components
  • Learn How to Create Custom Tag Helpers
  • Learn How to use Built In Tag Helpers
  • Learn How to use Areas
  • Learn How to develop data driven Pages using Entity Framework Core
  • Learn How to Develop and Consume Web API Core
  • Learn How to work with Identity Core Framework
  • Learn How to Deploy ASP . NET Core MVC Web Application
  • Who Should Attend

  • This course is designed for individuals with an intermediate knowledge of C#. Knowledge of earlier versions of ASP . NET MVC will be an added advantage.
  • Target Audiences

  • This course is designed for individuals with an intermediate knowledge of C#. Knowledge of earlier versions of ASP . NET MVC will be an added advantage.
  • ASP.NET Core MVC is an Application Framework for building modern web applications using MVC (Model View Controller) architectural pattern.

    The ASP.NET Core MVC framework is a lightweight, open source, highly testable presentation framework optimized for use with ASP.NET Core.

    ASP.NET Core is modern, open-source and cross-platform framework for building web applications.

    ASP.NET Core MVC is a rich framework for building web apps and APIs using the Model-View-Controller design pattern.

    The ASP.NET Core MVC framework is a lightweight, open source, highly testable presentation framework optimized for use with ASP.NET Core.

    ASP.NET Core MVC provides a patterns-based way to build dynamic websites that enables a clean separation of concerns. It gives you full control over markup, supports TDD-friendly development and uses the latest web standards.

    This course provides developers with a thorough knowledge in developing Web Applications using MVC architectural Pattern.

    In this course by development expert Kameswara Sarma Uppuluri, you will learn essential concepts that you need to know to build  Modern Web Applications using ASP.NET Core MVC.

    This course provides step-by-step walk-throughs and coding demos that you’re encouraged to code along with to enhance the learning process.

    This course is broken down into 27 Modules with each module providing source code so that you can follow along with Kameswara Sarma Uppuluri.

    Course Curriculum

    Chapter 1: ASP.NET Core MVC – The Big Picture

    Lecture 1: Course Introduction

    Lecture 2: Course Support For Learners

    Lecture 3: Software Pre-requisites

    Lecture 4: Understanding the ASP.NET Core Platform

    Lecture 5: Introduction To MiddleWare Components

    Lecture 6: Understanding Request PipeLine

    Lecture 7: Introduction to Services

    Lecture 8: The Road To ASP.NET Core MVC

    Lecture 9: Introduction to ASP.NET Core MVC

    Lecture 10: COMPLETE COURSE EXERCISE FILES

    Chapter 2: Understanding Boiler Plate Code of ASP.NET Core MVC Web Application

    Lecture 1: Creating a Sample ASP.NET MVC Core Web Application

    Lecture 2: Anatomy of an ASP.NET MVC Core Web Application

    Lecture 3: Understanding the Pre-Written Code

    Lecture 4: Understanding Entry Point

    Lecture 5: Understanding StartUp Class and Default Middleware Components

    Chapter 3: Working with Sections

    Lecture 1: Creating and Rendering Sections

    Chapter 4: Working With Controllers

    Lecture 1: Creating Our First Controller by writing Actions

    Lecture 2: Working with ViewBag Model Object

    Lecture 3: Accessing QueryString Parameter Values

    Lecture 4: Redirecting Users To a Different URL

    Lecture 5: Creating a Custom Model and Passing it to View

    Lecture 6: Accessing RouteData Object Values

    Lecture 7: Customizing Nav Bar

    Chapter 5: Working with Various Types Of IActionResults

    Lecture 1: Using ContentResult

    Lecture 2: Using ViewResult

    Lecture 3: Using RedirectResult

    Lecture 4: Using RedirectToActionResult

    Lecture 5: Using RedirectToRouteResult

    Lecture 6: Using FileResult

    Lecture 7: Using FileContentResult

    Lecture 8: Using FileStreamResult

    Lecture 9: Using VirtualFileResult and PhysicalFileResult

    Lecture 10: Using JsonResult

    Lecture 11: Using EmptyResult and NoContentResult

    Lecture 12: Using BadRequestResult and StatusCodeResult

    Lecture 13: Using UnauthorizedResult

    Lecture 14: Using NotFoundResult

    Lecture 15: Using OkObjectResult

    Lecture 16: Using PartialViewResult

    Chapter 6: Developing a Simple MVC Core App

    Lecture 1: Developing a Sample Mini-Application

    Chapter 7: State Management Techniques in ASP.NET Core MVC

    Lecture 1: Using ViewBag,ViewData objects in our Application

    Lecture 2: Using TempDataCookieState

    Lecture 3: Using SessionStateProvider

    Lecture 4: Using Cookies

    Lecture 5: Using Session Object

    Chapter 8: Working with Scaffolding Templates

    Lecture 1: Displaying List Of Records using Strongly Typed View

    Lecture 2: Displaying Data of a Single Record

    Lecture 3: Updating a Record

    Lecture 4: Deleting a Record

    Lecture 5: Inserting a Record

    Chapter 9: Working with Strongly Typed Partial Views

    Lecture 1: Displaying List Of Records using Strongly Typed Partial View

    Chapter 10: Configuring RazorViewEngine View Locations

    Lecture 1: Adding Custom ViewLocations

    Chapter 11: Working With HTML Forms Using Form Tag Helpers

    Lecture 1: Creating a View with various HTML Controls Using Form Tag Helpers

    Lecture 2: Receiving Form Submitted Data

    Chapter 12: Performing Validations with various Data Annotations

    Lecture 1: Implementing Validations with Various Data Annotations

    Lecture 2: Creating Views and Testing Validations

    Lecture 3: Implementing Custom Validation Attributes at Property Level

    Lecture 4: Implementing Custom Validation Attributes at Model Level

    Chapter 13: Understanding Default Model Binding

    Lecture 1: Excluding a Property from Model Binding

    Lecture 2: Binding Selective Properties Only

    Lecture 3: Binding To Complex Types

    Chapter 14: Understanding Dependency Injection

    Lecture 1: Overview of Dependency Injection

    Lecture 2: Creating a Service and adding it to Dependency Injection Container

    Lecture 3: AddTransient Service

    Lecture 4: AddSingleton Service

    Lecture 5: AddScoped Service

    Lecture 6: Manually Obtaining Service Context

    Chapter 15: Working with Configuration Service and User Secrets

    Lecture 1: Understanding Configuration Files

    Lecture 2: Accessing Configuration Data with the Options Pattern

    Lecture 3: Storing and Reading User Secrets

    Chapter 16: Working with Logging Service

    Lecture 1: Overview of Logging Levels

    Lecture 2: Calling various Log Methods in Controller

    Chapter 17: Working with Filters

    Lecture 1: Creating an Action Filter & Result Filter

    Lecture 2: Creating an AsyncAction Filter

    Lecture 3: Assigning Multiple Custom Filters at Global Level

    Lecture 4: Setting Execution Order of Custom Filters

    Lecture 5: Using ServiceFilterAttribute To use Custom Filter

    Chapter 18: Customizing Exception Handling Mechanism

    Lecture 1: Understanding Default Error Handling Mechanism

    Lecture 2: Working with ExceptionFilterAttribute

    Chapter 19: Developing ViewComponents

    Lecture 1: Creating a View Component

    Lecture 2: Applying View Component using Component Property

    Instructors

  • Mastering ASP.NET Core MVC From Scratch Using C#  No.2
    Kameswara Sarma Uppuluri | 25+ Years Of Experienced Corporate Trainer
    Microsoft Certified Trainer
  • Rating Distribution

  • 1 stars: 4 votes
  • 2 stars: 7 votes
  • 3 stars: 26 votes
  • 4 stars: 106 votes
  • 5 stars: 143 votes
  • Frequently Asked Questions

    How long do I have access to the course materials?

    You can view and review the lecture materials indefinitely, like an on-demand channel.

    Can I take my courses with me wherever I go?

    Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!