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 […]
Tag: ASP.NET Core 2.0
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 […]
Authentication Using Google 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 Google account. Prerequisites Install .NET Core 2.0.0 or above SDK from here. Install the latest […]
Authentication Using Twitter 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 Twitter. Prerequisites Install .NET Core 2.0.0 or above SDK from here. Install the latest version of […]
Cookie Authentication With ASP.NET Core 2.0
Introduction Authentication is an integral part of web security. ASP.NET Core provides multiple ways to implement authentication in a web application. In this article we will be looking into such a technique – Cookie authentication. We will be creating a web application to register new users and then implement a login page which allows only […]
CRUD Operations With ASP.NET Core Using Angular and ADO.NET
Introduction In this article I am going to explain how to create a MVC web application in ASP.NET Core 2.0 with Angular 5. We will be creating a sample Employee Record Management system using Angular at frontend, Web Api on backend and ADO.NET to fetch data from database. We will use Angular form with required […]
CRUD Operation With ASP.NET Core MVC Using Visual Studio Code and EF
Introduction In this article I am going to explain how to create a basic web application using ASP.Net Core MVC and Visual Studio Code in Windows System. We are going to create a sample Employee database management system. We will be using ASP.Net Core 2.0,Entity Framework and SQLite. Prerequisites Install .Net Core 2.0.0 SDK from […]
CRUD Operation With ASP.NET Core MVC Using ADO.NET and Visual Studio 2017
Introduction In this article, I am going to explain how to create an MVC web application in ASP.NET Core 2.0 using ADO.NET. We will be creating a sample Employee Record Management System and performing CRUD operations on it. We will be using Visual Studio 2017 (Version 15.3.5 or above) and SQL Server. Prerequisites Install .NET […]