This is a Beginner to Advanced level course on .NET 5 that will take you from basics all the way to advance mode. This course is for anyone who is new to ASP.NET Core or who is familiar with ASP.NET and wants to take the first stab at understanding what is different in ASP.NET Core.
Learn ASP.NET Core MVC
Exploring ASP.NET Core MVC
- Overview of Microsoft Web Technologies
- Overview of ASP.NET 6.x
- Introduction to ASP.NET Core MVC
- Lab : Exploring ASP.NET Core MVC
- Exploring a Razor Pages Application
- Exploring a Web API Application
- Exploring an MVC Application
Designing ASP.NET Core MVC Web Applications
- Planning in the Project Design Phase
- Designing Models, Controllers and Views
- Lab : Designing ASP.NET Core MVC Web Applications
- Planning Model Classes
- Planning Controllers
- Planning Views
- Architecting and MVC Web Application
Configure Middlewares and Services in ASP.NET Core
- Configuring Middlewares
- Configuring Services
- Lab : Configuring Middleware and Services in ASP.NET Core
- Working with Static Files
- Creating custom middleware
- Using dependency injection
- Injecting a service to a controller
Developing Controllers
- Writing Controllers and Actions
- Configuring Routes
- Writing Action Filters
- Lab : Developing Controller
- Adding controllers and actions to an MVC application
- Configuring routes by using the routing table
- Configuring routes using attributes
- Adding an action filer
Developing Views
- Creating Views with Razor Syntax
- Using HTML Helpers and Tag Helpers
- Reusing Code in Views
- Lab : Developing Views
- Adding Views to an MVC Application
- Adding a partial view
- Adding a view component
Developing Models
- Creating MVC Models
- Working with Forms
- Validate MVC Application
- Lab : Developing Models
- Adding a model
- Working with Forms
- Add Validation
Using Entity Framework Core in ASP.NET Core
- Introduction to Entity Framework Core
- Working with Entity Framework Core
- Use Entity Framework Core to connect to Microsoft SQL Server
- Lab : Using Entity Framework Core in ASP.NET Core
- Adding Entity Framework Core
- Use Entity Framework Core to retrieve and store data
- Use Entity Framework Core to connect to Microsoft SQL Server
Using Layouts, CSS and JavaScript in ASP.NET Core MVC
- Using Layouts
- Using CSS and JavaScript
- Using jQuery
- Lab : Using Layouts, CSS and JavaScript in ASP.NET Core
- Applying a layout and link views to it
- Using CSS
- Using JavaScript
- Using jQuery
Client-Side Development
- Applying Styles
- Using Task Runners
- Responsive design
- Lab : Client-Side Development
- Use gulp to run tasks
- Styling using Sass
- Using Bootstrap
Managing Security
- Authentication in ASP.NET Core
- Authorization in ASP.NET Core
- Defending from Attacks
- Lab : Managing Security
- Use Identity
- Add Authorization
- Avoid the Cross-Site Request Forgery Attack
Implementing Web APIs
- Introducing Web APIs
- Developing a Web API
- Calling a Web API
- Lab: Adding Actions and Call Them Using Microsoft Edge
- Lab: Calling a Web API using server-side code
- Lab: Calling a Web API using jQuery