Introduction We all know that the Blazor framework is a client-side web framework. But is it possible to run a Blazor application separate from UI thread? The latest version 0.5.0 of Blazor gives us the flexibility to run Blazor in a separate process from the rendering process. We are going to explore server-side Blazor in […]
Tag: Blazor
JavaScript Interop in Blazor
Introduction In this article, we will learn about JavaScript Interop in Blazor. We will understand what JavaScript Interop is and how we can implement it in Blazor with the help of a sample application. We will be using Visual Studio code for our demo. What is JavaScript Interop? Blazor uses JavaScript to bootstrap the .NET […]
Creating a SPA Using Razor Pages With Blazor
Introduction In this article, we are going to create a Single Page Application (SPA) using Razor pages in Blazor with the help of Entity Framework Core database first approach. Single-Page Applications are web application that load a single HTML page and dynamically update that page as the user interacts with the app. We will create […]
Deploying a Blazor Application on IIS
Introduction In this article, we will understand how to deploy an ASP.NET Core hosted Blazor application with the help of IIS 10 on a Windows 10 machine. We will be using Visual Studio 2017 to publish the app and SQL Server 2014 to handle DB operations. We will also troubleshoot some of the common hosting […]
Cascading DropDownList in Blazor Using EF Core
Introduction In this article, we are going to create a cascading dropdown list in Blazor using Entity Framework Core database first approach. We will create two dropdown list – Country and City. On selecting the value from country dropdown, we will change the value of City dropdown. We will be using Visual Studio 2017 and […]
ASP.NET Core – CRUD Using Blazor And Entity Framework Core
Introduction Microsoft has recently announced the release of a new .NET web framework – Blazor. In this article, we are going to create a web application using Blazor with the help of Entity Framework Core. We will be creating a sample Employee Record Management System and perform CRUD using Blazor on it. Prerequisites Install the […]
ASP.NET Core – Getting Started With Blazor
Introduction Microsoft has recently announced the release of a new .NET web framework – Blazor. In this article, we will understand Blazor and setup Blazor development environment in our machine. We will also execute our first program in ASP.NET core using Blazor and Visual Studio 2017. We will create a sample calculator application using Blazor. […]