Introduction In this article, we will be creating a personal expense manager using Asp.NET Core 2.1 and Entity Framework core Code first approach. An expense manager tracks your daily expenses and provides comparative charts to show expense summary. Since we are using modal dialog to handle user inputs and to show monthly and weekly expense […]
Category: ASP.NET Core
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 – Using Highcharts With Angular 5
Introduction In this article, we will create an online poll application using ASP.NET Core, Angular 5, and Entity Framework Core. Since this is the season of IPL in India, we will create an online poll for “Who is going to win IPL 2018?”. The poll results will be displayed as a column chart, that is created using Highcharts. […]
ASP.NET Core – CRUD With React.js And Entity Framework Core
Introduction In this article, we are going to create a web application using ASP.NET Core 2.0 and React.js with the help of Entity Framework Core database first approach. We will be creating a sample Employee Record Management system and perform CRUD operations on it. To read the inputs from the user, we are using HTML […]
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. […]
ASP.NET Core – Two Factor Authentication Using Google Authenticator
Introduction In this article, we are going to learn how to perform two-factor authentication in an ASP.NET Core application using Google Authenticator app. The user needs to configure the Google Authenticator app on his/her smartphone using the QR code generated in the web app. At the time of logging in to the web application, a […]
ASP.NET Core – CRUD Using Angular And Entity Framework Core
Introduction In this article, we are going to create a web application using ASP.NET Core 2.0 and Angular with the help of Entity Framework Core database first approach. We will be creating a sample Employee Record Management system. To read the inputs from the user, we are using Angular Forms with required field validations on […]
Authentication Using Facebook In ASP.NET Core 2.0
Introduction Sometimes, we want the users to log in using their existing credentials of third-party applications such as Facebook, Twitter, Google etc. into our application. In this article, we are going to look into authentication of ASP.NET Core app using a Facebook account. Prerequisites Install .NET Core 2.0.0 or above SDK from here. Install the latest […]
Authentication Using LinkedIn In ASP.NET Core 2.0
Introduction Sometimes, we want the users to log in using their existing credentials of third-party applications, such as Facebook, Twitter, Google, LinkedIn etc. into our application. In this article, we are going to look into the authentication of ASP.NET Core app using a LinkedIn account. Prerequisites Install .NET Core 2.0.0 or above SDK from here. Install […]