Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - About Middleware
In this video, you will learn concepts about middleware such as what is middleware and forming a pipeline combining middleware. This clip is from the chapter "Middleware in ASP.NET Core 3.1" of the series "ASP.NET 6.0 - Build Hands-On...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - The Startup Class - How to Configure Services
This video discusses the Startup class in an ASP.NET Core 3.1 project. After going through this video, you will have knowledge about the two main methods in this class, in particular, the ConfigureServices() method, which is used to...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - The Program Class and Host Object
The Program class is where the ASP.NET Core web app builds its web host server and other infrastructure and starts up as a console app (on which the web host is built), utilizing the Startup class. This clip is from the chapter "Create...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Understanding the New Look Project File
This video deals with the new lean and trimmed-up project (.csproj) file in the ASP.NET Core web project. The project file has been considerably trimmed to only include the core framework version. Any other dependencies that may be added...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Introduction
This video gets you started with ASP.NET Core 3.1 web framework. You will know and appreciate the need to evolve a framework like ASP.NET Core and the benefits of using it. This clip is from the chapter "Introduction" of the series...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the UpdateOrder View
You will be able to understand the creation and working of the view to render an updated order record. You will get a refresher on the client- and server-side validation in the process. The completed application until this point is run...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create UpdateOrder Action Methods
This video is about creating the GET and POST action methods for updating an order. You will learn the code with a thorough explanation of the methods. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Testing Validation of Order Form Inputs
This video runs through the application and tests user input validation checks on the order form. You will learn how to test the client- and server-side validations after going through the video. This clip is from the chapter "Coding...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the AddOrder View
AddOrder view is added in this video along with suitable markup with built-in tag helpers to add model or server-side application. Application is run at the end of the video to demonstrate adding an order to the database. This clip is...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create AddOrder Action Methods
This video builds the code for AddOrder action methods (GET and POST). You will be able to AddOrder (HTTPGET) action method to return a view for adding order and AddOrder (HTTPPOST) action method to add(insert) customer order details to...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Add Validation Attributes to Order Class
In this video, you will see adding the validation attributes to the Order Model class. This is required for server-side validation of the Order form. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create GetOrder View
In this video, you will learn how to create the GetOrder View with a thorough explanation. The application is also run to show the relevant functionalities. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create GetOrder Action Methods
In this video, you will work out the code for creating the GetOrder(GET and POST) action methods on the Order Controller. The code is discussed in detail along the way. This clip is from the chapter "Coding Project Part 2: Consume the...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create Index View (Order Controller)
This video explains the creation and code for the Index view of the Order Controller. You will be able to create the Order Controller Index View and run the application. This clip is from the chapter "Coding Project Part 2: Consume the...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the Order Controller
This video walks through the coding exercise to create the Order Controller with the Index action method. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of the series...
Curated Video
Behavioral Design Patterns in C++ - Document Framework - II
In this video, we will continue adding classes to the document framework. This clip is from the chapter "Template Method" of the series "Behavioral Design Patterns in C++".In this section, we explore the template method behavioral design...
Curated Video
Behavioral Design Patterns in C++ - Spreadsheet Application - II
This video builds upon the first part of our spreadsheet application series; here, we will add new exports formats to the application. This clip is from the chapter "Strategy" of the series "Behavioral Design Patterns in C++".In this...
Curated Video
Behavioral Design Patterns in C++ - Spreadsheet Application - I
In this video, we will be building a spreadsheet application using JavaScript. This clip is from the chapter "Strategy" of the series "Behavioral Design Patterns in C++".In this section, you will learn about the strategy pattern.
Curated Video
Behavioral Design Patterns in C++ - Overview of Class Diagram
This video provides an overview of the class diagram. This clip is from the chapter "Basic Concepts" of the series "Behavioral Design Patterns in C++".This section focuses on basic concepts of design patterns.
Curated Video
Behavioral Design Patterns in C++ - TextPad - I
This video helps you with the overview of the TextPad application and its menu. This clip is from the chapter "Command" of the series "Behavioral Design Patterns in C++".In this section, we will explore the command design pattern, which...
Curated Video
Behavioral Design Patterns in C++ - FindDialog - I
In this video, you will get to know how a dialog box may handle an event that is generated by a button. This clip is from the chapter "Command" of the series "Behavioral Design Patterns in C++".In this section, we will explore the...
Curated Video
Behavioral Design Patterns in C++ - Basic Example-1
In this video, we will go through one of the basic examples of strategy pattern. This clip is from the chapter "Strategy" of the series "Behavioral Design Patterns in C++".In this section, you will learn about the strategy pattern.
Curated Video
Learn Azure Serverless Functions in a Weekend - HTTP Function to Queue Message
This video demonstrates how to develop an HTTP function to queue messages. Here, you will develop an HTTP trigger function, keeping in mind that it will be used by the payment gateway system to submit the payment status. It should take...
Curated Video
Learn Azure Serverless Functions in a Weekend - Send Email with Azure Functions
This video demonstrates how to send emails with Azure Functions. Here, you will continue using the previously developed function but this time, you are going to add the functionality of sending out an email notification to the client....