17.12.2022, 04:01
Asp.Net Core Razor Pages Web Application Development
Published 8/2022
MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz
Language: English | Size: 7.04 GB | Duration: 13h 12m
ASP.NET Web Development using .NET 6 Razor Pages - Develop Large Scale Websites Using ASP.NET Core And Razor Pages
What you'll learn
Build Real World ASPNET Core (.NET 6) Web Applications Using Razor Pages Template
Create Fully Functional Web Application with Authentication and Authorization with Multiple Roles
Learn and Use Entity Framework To Connect and Consume Data from a Microsoft SQL Server Database
Use Microsoft Identity To Implement Login and Register Functionalities
Learn and Use CRUD operations with Razor Pages and Entity Framework Core (EF Core)
Learn and Use ViewData and TempData to Pass Data From Models To Views
Use Bootstrap 5 To Build The Web Application
Show Notifications To Users Using Bootstrap Alerts
Repository Pattern
Dependency Injection Used In Razor Pages
Image Upload Functionality - Upload Images to Popular 3rd Party Image Hosting Provider Using SDKs
Add WYSIWYG to our Application and Add Image Upload
Authentication and Authorization in ASP NET Core (.NET 6)
Learn Advanced Topics Of ASPNET Core (.NET 6) and Implement them using Razor Pages
Requirements
3-6 Months Of Knowledge In C# Language and ASPNET (ASPNET Core or ASPNET Framework)
Hands On Experience Using Visual Studio
Hands On Experience Using Microsoft SQL Server Management Studio
Description
A Real-World Web Application Using ASP.NET Core Razor Pages and Entity Framework (.NET 6).This is a complete guide to Learning and Building scalable and data-driven websites using ASP.NET, ASP.NET Core[.NET 6], and Razor Pages Framework.If you have web development experience working with ASP.NET Framework or ASP.NET Core, then this course will provide you with the amazing knowledge you need to build page-centric data-driven websites using the popular Razor Pages Framework.This course is for all skill levels and is best suited for beginners and intermediate developers who have gained knowledge in C# and ASP.NET framework and want to use their skills to learn highly scalable websites using ASP.NET and Razor Pages.In this course, we will make use of ASP.NET Core[.NET6] and Razor Pages to build a complete blog application with multi-role user support (user and admin support).During this course, you will gain so much experience with web pages and web components, I am confident that you will gain enough practical knowledge to create your own ASP.NET Core Websites using Razor Pages.If you want to create functional, generic, clean, and usable websites using ASP.NET, then this is the course for you.In this course, you will learn and implement:Learn And Create Your First ASP.NET Core Razor Pages ApplicationCreate a fully functional, highly scalable, page-centric blog applicationRepository PatternUnderstand and learn the concepts of .NET 6 and apply them using the Razor Pages FrameworkDomain ModellingEntity Framework Code First ApproachSQL ServerSeeding the DatabaseCRUD operations using Razor Pages and ASP.NETShowing Notifications (ViewData, TempData, etc)Routing in Razor PagesDomain Models vs View ModelsAuthentication and AuthorizationMulti-Role AuthorizationFull User and Admin Support in the Blog ApplicationRich Text EditorUploading Images To A 3rd Party Image Hosting ProviderCreating APIs within our Razor Pages Application and Call Them using JavascriptServer-Side and Client-Side Validations.Create, Read, Update and Delete using Entity Framework and SQL ServerWeb Development Using Razor PagesWrite Clean, Re-Usable Code
Overview
Section 1: Introduction To This Course (ASP.NET Core Web Development With Razor Pages)
Lecture 1 Introduction To This Course (ASP.NET Core Web Development With Razor Pages)
Lecture 2 Setting Up Development Environment
Lecture 3 Install .NET SDK and .NET Runtime
Lecture 4 Download and Install Visual Studio 2022
Lecture 5 Download and Install SQL Server (Local Instance) and SQL Server Management Stu
Lecture 6 Getting Help
Lecture 7 Complete Source Code and Github Repository
Lecture 8 ASPNET Core Overview and Benefits
Lecture 9 Introduction and Overview To Razor Pages
Section 2: Create ASP.NET 6 Web Project - Razor Pages Template
Lecture 10 Create New ASP.NET Core Razor Pages Application
Lecture 11 Understand Our ASP.NET Core Web Application Files
Lecture 12 Create Domain Model (BlogPost and Tag)
Lecture 13 Adding Entity Framework Core Packages
Lecture 14 Creating the DBContext Class
Lecture 15 Adding ConnectionString To The Database
Lecture 16 Injecting DbContext Into Our Application
Lecture 17 Run EF Core Migrations
Section 3: Creating Our Blog Post Web Page and Actions
Lecture 18 Introduction
Lecture 19 Changes To UI (Look and Feel)
Lecture 20 Create New Razor Page For Adding Blog Posts
Lecture 21 Create Add BlogPost Razor Form and BindProperty
Lecture 22 Form Submission and Data Binding In Razor Pages
Lecture 23 Create Blog Post (Save To Database)
Lecture 24 Show All Blog Posts (Get All Blog Posts)
Lecture 25 Edit or Update Blog Post
Lecture 26 Delete Blog Post
Lecture 27 Making Our Methods Asynchronous
Section 4: Repository Pattern and Showing Notifications In Our Application
Lecture 28 Repository Pattern
Lecture 29 Injecting Repositories In Services
Lecture 30 Showing Notifications Using ViewData
Lecture 31 Showing Notifications Using TempData
Lecture 32 Making Notifications Generic
Section 5: Adding WYSIWYG and Image Upload
Lecture 33 Introduction
Lecture 34 Add WYSIWIG Editor On Add and Edit Page
Lecture 35 Image Upload Introduction
Lecture 36 Create Image API
Lecture 37 Create POST Method and Image Repository
Lecture 38 Register To Cloudinary and Settings
Lecture 39 Inject Image Repository And Test Cloudinary
Lecture 40 Call Image Upload From Razor Page
Lecture 41 Add Image Upload To Froala Editor
Section 6: Displaying Blogs and Tags
Lecture 42 Introduction
Lecture 43 Seeding Blogs
Lecture 44 Displaying Blogs and Hero Section
Lecture 45 Displaying Blog Details
Lecture 46 Adding and Using Tags - Introduction
Lecture 47 Making DB Changes (Navigation properties EF Core)
Lecture 48 Tag Changes In Add Blog Post Page
Lecture 49 Tag Changes In Edit Blog Page
Lecture 50 Displaying Tags In Our Application
Lecture 51 Displaying Tags In Blog Details Page
Lecture 52 Routing Using Tags
Section 7: Adding Login and Registration Using Identity (Authentication and Authorization)
Lecture 53 Introduction
Lecture 54 Adding Nuget Packages For Identity & Creating Identity DbContext
Lecture 55 Add Connection String and Injecting DbContext Into Program.cs
Lecture 56 Running Ef Core Migrations
Lecture 57 Implement Register Page
Lecture 58 Handling Multiple DbContexts
Lecture 59 Testing Register Functionality
Lecture 60 Implement Login Page and Functionality
Lecture 61 Implement Logout Functionality
Lecture 62 Changes To SuperAdminUser
Lecture 63 Changes To Users (Adding User Roles)
Lecture 64 Adding Authorization To Admin Page
Lecture 65 Adding Role Based Authorization To Admin Page
Lecture 66 Redirecting Users Based On Return Url
Section 8: Adding User Functionality To Like and Comment
Lecture 67 Introduction
Lecture 68 Domain Model For Blog Post Like And Migration
Lecture 69 Implement Total Likes On Blog Details
Lecture 70 Implement Adding A Like
Lecture 71 More Functionality For Like Button
Lecture 72 Domain Model For Blog Post Comment And Migration
Lecture 73 Comment Section Structure and Add Comments Functionality
Lecture 74 Displaying Comments
Section 9: Admin Functionality - User Management
Lecture 75 Introduction
Lecture 76 Display Users (Read All Users)
Lecture 77 Create Add User Model Popup and Add User Functionality
Lecture 78 Delete User Functionality
Section 10: Server Side and Client Side Validations
Lecture 79 Introduction
Lecture 80 Client Side VS Server Side Validations
Lecture 81 Server Side Validations For Register Page
Lecture 82 Client Side Validations For Register Page
Lecture 83 Validating Login Page (Server Side and Client Side)
Lecture 84 Validating Add User Page (Server Side and Client Side)
Lecture 85 Adding Custom Validations and Validations For Add Blog Post Page
Lecture 86 Adding Validations To Edit Blog Post Page
Lecture 87 Validate BlogPost Comments and Blog Post Page
Beginner C# ASPNET Developers who may have experience with ASPNET MVC before or the ASPNET Framework but now want to expand their knowledge in the latest .NET Razor Pages Application,Intermediate and Experienced Developers who are keen to learn creating page-centric, data driven websites using ASPNET and Razor Pages
Homepage