Instructional Video9:38
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Confirm Delete Dialog

Higher Ed
This lecture shows how to create a confirm delete dialog for getting the confirmation from users before deleting a movie. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0...
Instructional Video4:44
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Render Fragment Usage to Change Modal Title Dynamically

Higher Ed
This lecture shows a way to change the visual appearance (modal title) of the same modal dialog for two different operations: add and edit movies at runtime, dynamically. This clip is from the chapter "Create a CRUD Application in...
Instructional Video14:51
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Details Page to Show List of Movies

Higher Ed
This video lecture shows how to create a details page for movies with a navigation menu. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor Hands-On".This section...
Instructional Video8:02
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Register the Data Access Services Class in Startup

Higher Ed
Here, we will register the data access service in the Startup class ConfigureServices method. Once it is registered, the service can be called and used in the application. This clip is from the chapter "Create a CRUD Application in...
Instructional Video5:09
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Add Users and Roles

Higher Ed
This video shows how to seed the tables with users and roles by running a method from the Startup class of the Blazor app. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0...
Instructional Video7:56
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Learn Asynchronous Programming Through Coding Examples

Higher Ed
In this lecture, you will learn asynchronous programming concepts (essential for learning ASP.NET Core 3.1 Blazor). This clip is from the chapter "Asynchronous Programming Fundamentals" of the series "Build and Learn ASP.NET 6.0 Blazor...
Instructional Video9:09
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - SetParametersAsync

Higher Ed
This lecture discusses the SetParametersAsync method, which is the first method called in a component's lifecycle. This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and Learn ASP.NET...
Instructional Video29:33
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Two-Way Data Binding in ASP.NET Core 3.1 Blazor

Higher Ed
This lecture describes two-way data binding in Blazor. It walks through a user input form that collects data in input controls and as the user types into the input boxes, the data is immediately written to the browser. This clip is from...
Instructional Video15:11
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Event Callback in ASP.NET Core 3.1 Blazor

Higher Ed
This video describes the event callback concept. You will learn how to enable communication among components with event callback. This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and...
Instructional Video3:02
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Frequently Used Page Directives for a Razor Page

Higher Ed
This video explains the frequently used page directives for a Razor page. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor Hands-On".This section explains how to create...
Instructional Video3:25
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - The Program Class and Host Object

Higher Ed
This lecture explains the hosting process of a Blazor application where the Program class main method is the entry point to the application. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and...
Instructional Video9:51
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - OnAfterRender and OnAfterRenderAsync

Higher Ed
This lecture shows a demo code for illustrating these two Blazor lifecycle methods: OnAfterRender and OnAfterRenderAsync. This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and Learn...
Instructional Video11:17
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - OnParametersSet and OnParametersSetAsync

Higher Ed
This lecture shows a demo code for illustrating these two Blazor lifecycle methods: OnParametersSet and OnParametersSetAsync. This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and Learn...
Instructional Video9:14
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - OnInitialized and OnInitializedAsync

Higher Ed
This lecture discusses the OnInitialized and OnInitializedAsync methods in a component's lifecycle. This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor...
Instructional Video16:47
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - One-Way Data Binding in ASP.NET Core 3.1 Blazor

Higher Ed
The tutorial builds a binding demo project in Visual Studio 2019, which toggles a paragraph with changed text and styles on the clicking of a button. A counter gets incremented as well. This clip is from the chapter "Advanced Concepts...
Instructional Video9:52
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Routing in ASP.NET Core 3.1 Blazor

Higher Ed
This video discusses URL routing with code samples. Blazor components can accept multiple route templates. It is also possible to pass parameters to the components by the route templates. This clip is from the chapter "Advanced Concepts...
Instructional Video9:35
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Partial Classes and Component Tag Usage

Higher Ed
This video explains how to use partial classes and understand component tag helpers for a Blazor 3.1 server project. These features were released on December 3 by Microsoft and enhance Blazor features. This clip is from the chapter...
Instructional Video12:59
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Nested Component in Blazor

Higher Ed
This video explains how to create a child component that is nested in a parent component. You will know about the parameter attribute and RenderFragment delegate and their use in the app. This clip is from the chapter "Components in...
Instructional Video13:59
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create Your First Razor Component in Blazor

Higher Ed
In this video, you will create your first Razor (Blazor) component that computes the average of numbers, and you will understand the core concept of components and be able to build simple components with Blazor. This clip is from the...
Instructional Video8:10
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Blazor Hosting Models

Higher Ed
This video explains different hosting models for the Blazor framework and makes you aware of their pros and cons before deciding to go ahead with one or the other. This clip is from the chapter "Introduction to ASP.NET Core 3.1 Blazor"...
Instructional Video5:04
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - What Is Blazor?

Higher Ed
This is an introduction to the ASP.NET Core 3.1 Blazor web framework. Through this lecture, you will be able to have an overview of Blazor and get answers to common questions such as: What is Blazor? Why should I learn Blazor? This clip...
Instructional Video6:15
Curated Video

Create Your First Web Page with HTML

Pre-K - Higher Ed
Are you curious about how websites are made? Dive into the world of web development with this beginner-friendly tutorial! In this video, SkillSprints' expert Mark guides you through some of the fundamentals of HTML and help you build...
Instructional Video7:21
Curated Video

Write Your First Lines of Python

Pre-K - Higher Ed
Ever wondered how to start coding in Python? Join Mark from SkillSprints as he walks you through writing your very first lines of Python code. In this beginner-friendly tutorial, you’ll learn the basics of Python programming, set up your...
Instructional Video3:45
Seven Dimensions

Ethics and Compliance

Higher Ed
Various legal and forensic specialists examine the behaviors and accountabilities that must be demonstrated by expert witnesses. Expert Evidence part 2