Learn the essentials of ASP.NET Core and create your first application. Understand the .NET ecosystem, middleware, request handling, and error management for a solid foundation in web development.
Overview
Syllabus
- Lesson 1: Introduction to ASP.NET Core
- Hello World with ASP.NET Core
- Lesson 2: Creating Your First ASP.NET Core Application
- Walking through the ASP.NET Core Project Structure
- Customize Your ASP.NET Core App
- Adding a Bogus library
- Lesson 3: Extending Functionality of Your ASP.NET Core Application
- Add Logging To Your Application
- Adding Endpoint For To Do Items
- Lesson 4: Handling Requests with Middleware in ASP.NET Core
- Default 404 Middleware In Action
- Serve Static Files in ASP.NET Core
- Configure Welcome Page Middleware
- Lesson 5: Handling Errors Using Middleware in ASP.NET Core
- Handling Errors in Development Environment
- Configure DeveloperExceptionPage for Dev and Staging
- Handling Errors Like a Pro