Companies Home Search Profile

ASP.NET Core Web Application Using Razor Pages

Focused View

Coding Courses

8:59:29

162 View
  • 1. Introduction.mp4
    06:39
  • 1. Introduction.mp4
    03:03
  • 2. Create New Project.mp4
    00:49
  • 3. Connect to SQL Server Database and Create a Table.mp4
    02:49
  • 4. Install SqlClient Package.mp4
    00:48
  • 5. Contact Form - Create the Form.mp4
    08:18
  • 6. Contact Form - Traditional validation.mp4
    10:10
  • 7. Contact Form - Validation using Attributes and Model Binding.mp4
    13:42
  • 8. Contact Form - Add Messages to Database.mp4
    03:29
  • 9. Send Emails.mp4
    06:18
  • 10. Contact Form - Send Confirmation Emails.mp4
    02:01
  • 11. Update EmailSender.mp4
    01:04
  • 12. Messages - List received messages.mp4
    14:47
  • 13. Messages - Add Table Pagination.mp4
    09:48
  • 14. Message Details.mp4
    08:49
  • 15. Delete Messages.mp4
    03:54
  • 1. Introduction.mp4
    03:13
  • 2. Create books table and add images.mp4
    04:24
  • 3. Books - List the books.mp4
    15:18
  • 4. Books - Add search functionality.mp4
    06:03
  • 5. Books - Add pagination.mp4
    09:52
  • 6. Books - Add sort functionality.mp4
    13:56
  • 7. Create Books - Build the Form.mp4
    15:43
  • 8. Create Books - Upload images.mp4
    03:14
  • 9. Create Books - Insert Books in Database.mp4
    03:48
  • 10. Edit Books - Create the Form.mp4
    13:51
  • 11. Edit Books - Update image.mp4
    03:53
  • 12. Edit Books - Update Database.mp4
    03:30
  • 13. Delete books.mp4
    06:57
  • 14. Fix empty images error.mp4
    01:06
  • 1. Introduction.mp4
    04:21
  • 2. Add tables to database.mp4
    02:09
  • 3. About Sessions.mp4
    04:20
  • 4. Enable Session Middleware.mp4
    01:51
  • 5. Register - Update Navbar.mp4
    04:23
  • 6. Register - Create the Form.mp4
    10:55
  • 7. Register - Create new Account.mp4
    05:50
  • 8. Register - Send Confirmation Email.mp4
    02:18
  • 9. Register - Create Authenticated Session.mp4
    02:42
  • 10. Register - Access Control.mp4
    02:38
  • 11. Login - Create the Form.mp4
    08:17
  • 12. Login - Create Authenticated Session.mp4
    04:34
  • 13. Logout.mp4
    02:26
  • 14. Authorization - Create Attributes.mp4
    05:37
  • 15. Authorization - Use Attributes.mp4
    05:31
  • 16. ForgotPassword - Create the Form.mp4
    06:23
  • 17. ForgotPassword - Send Reset Token.mp4
    06:13
  • 18. ForgotPassword - Save Reset Token.mp4
    03:23
  • 19. ResetPassword - Create the Form.mp4
    10:38
  • 20. ResetPassword - Update the Password.mp4
    06:41
  • 21. Profile - Show Profile.mp4
    06:41
  • 22. Profile - Create Update Form.mp4
    15:36
  • 23. Profile - Update Profile.mp4
    09:37
  • 24. Users - Read Users from Database.mp4
    06:09
  • 25. Users - Display Users.mp4
    05:45
  • 26. Users - Add Pagination.mp4
    07:28
  • 1. Introduction.mp4
    05:07
  • 2. Create Order Tables.mp4
    04:34
  • 3. Home page - Create Sections.mp4
    12:30
  • 4. Home page - Create Book Items.mp4
    10:09
  • 5. Home page - Read Book Items from Database.mp4
    13:08
  • 6. Shopping Cart - Introduction.mp4
    05:18
  • 7. Shopping Cart - Add Icon.mp4
    04:54
  • 8. Shopping Cart - Update cookie using Javascript.mp4
    13:09
  • 9. Shopping Cart - Read cookie on the server.mp4
    02:27
  • 10. Book Details - Read book details from database.mp4
    05:20
  • 11. Book Details - Display book details in razor page.mp4
    09:25
  • 12. Book Search - Create the Search Form.mp4
    13:41
  • 13. Book Search - List Book Items.mp4
    09:41
  • 14. Book Search - Add Search Functionality.mp4
    05:07
  • 15. Book Search - Implement Pagination.mp4
    10:09
  • 16. Cart Details - Create Page Template.mp4
    08:18
  • 17. Cart Details - Create OrderItem Class.mp4
    02:10
  • 18. Cart Details - Convert Cookie to Dictionary.mp4
    04:35
  • 19. Cart Details - List Cart Items.mp4
    07:55
  • 20. Cart Details - Add Subtract Delete Items.mp4
    09:17
  • 21. Cart Details - Order Summary.mp4
    10:20
  • 22. Cart Details - Create Orders.mp4
    18:33
  • Description


    Build Complete Web Application using ASP.NET Core, Razor Pages, SQL Server Database, Session Data and Cookies

    What You'll Learn?


    • Create a full ASP .NET Core Web Application using Razor Pages
    • Create SQL Server databases and tables using Visual Studio 2022
    • Perform CRUD Operations on SQL Server Databases
    • Use Pagination to Split the Content over Multiple Pages
    • Implement the Search Functionality to Find Data in the Database
    • Upload Images to the Server
    • Implement Authentication and Role based Authorization using Session Data
    • Send Confirmation Emails
    • Using Cookies to Add/Subtract/Delete Items from the Shopping Cart
    • Form Validation using Attributes and Model Binding

    Who is this for?


  • Beginner developers who want to make a complete web application using ASP .NET Core and Razor Pages
  • More details


    Description

    This course is for Beginners to ASP.NET having some knowledge of C# or similar programming languages.

    In this course, I will show you how to use SqlClient to connect to the database and to execute SQL queries. In addition, I will show you how to implement the traditional authentication using Sessions.

    We will use Visual Studio 2022 to connect to the SQL Server and to create the database/tables. So we don’t need to install SSMS (SQL Server Management Studio).

    In this course, you will learn:

    - How to create an ASP.NET Core Web Application with Razor Pages

    - How to create databases and tables using SQL Server and Visual Studio 2022

    - How to update the layout of the application

    - How to use Session data

    - How to use Cookies

    - How to validate forms using attributes and model binding

    - How to send emails using ASP.NET Core and SendGrid

    - How to Implement Authentication and Role based Authorization

    - How to reset user password

    - How to perform CRUD operations (Create, Read, Update and Delete) on the database using ASP.NET and ADO (no Entity Framework)

    - How to use pagination (Split data on multiple pages)

    - How to add advanced search functionalities

    - How to upload images to the server

    To follow this course, you need to install the following tools

    - Visual Studio 2022

    - Microsoft SQL Server

    Also it is necessary to install two components into Visual Studio: “ASP.NET and web Development” and “.NET Desktop development”

    Who this course is for:

    • Beginner developers who want to make a complete web application using ASP .NET Core and Razor Pages

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Coding Courses
    Coding Courses
    Instructor's Courses
    I have more than 15 years of experience as software developer and more than 7 years of experience as university professor in computer science. I master many programming languages, frameworks and technologies. My main topic covers C#, ASP.NET, PHP, Laravel, Java, Android, JavaFX, C/C++, Computer Security and Wi-Fi Networks. I love programming, teaching and sharing my knowledge with others.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 78
    • duration 8:59:29
    • Release Date 2023/03/29