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 […]
Tag: C#
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 […]
What’s New In Microsoft .NET Framework 4.7.1
Introduction Microsoft announced the release of .NET framework 4.7.1 on October 17, 2017. It is included in Windows 10 Fall Creators Update. It is available on Windows 7 and up and Windows Server 2008 R2 and up. It is also available with Visual Studio 2017 Version 15.5. You can download this latest framework from here. Let’s […]
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 […]
Searching Algorithms In C#
Introduction In this article, I am going to discuss two of the most commonly-used searching algorithms in the programming world Linear Search Binary Search I will be explaining the algorithms with the help of an example and will provide a C# code to execute that. Linear Search This algorithm will perform a sequential search of […]
Quick Sort Algorithm In C#
Introduction In this article, I am going to explain about the Quicksort algorithm.This is a Divide and Conquer algorithm. It picks an element as pivot and partitions the given array around the picked pivot. This algorithm is very common in job interviews.So first, I am going to explain Quick Sort algorithm; then, I will be […]
Merge Sort Algorithm In C#
Introduction In this article, I will be discussing Merge sort algorithm. Merge sort is a comparison based sorting algorithm based on the divide and conquer approach. The input array will be divided into subarrays and those subarrays will be further divided until each subarray contains a single element. Then, these subarrays will be merged together […]
Insertion Sort Algorithm In C#
Introduction In this article i am going to explain about the Insertion sort algorithm.Insertion Sort is based on the idea of consuming one element from input array in each iteration to find its correct position in sorted array.This algorithm is efficient for smaller datasets. So first I am going to explain insertion sort algorithm then […]
Selection Sort Algorithm In C#
Introduction In this article, I am going to explain about the Selection sort algorithm. It is an in-place comparison sorting algorithm. It is also a major question in job interviews. So first, I am going to explain Selection Sort algorithm. Then, I will be providing a C# code to execute it. The Selection sort Algorithm This […]
Bubble Sort Algorithm In C#
Introduction In this article, I am going to explain the Bubble sort algorithm. Bubble sort is one of the most widely used sorting algorithms by the programmers worldwide. It can be applied to any collection including array, string, numbers, or characters. Bubble sort is very frequently asked about in job interviews. So first I am going […]
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 […]