How to Quickly Implement BlueImp jQuery File Upload GitHub Plugin in ASP.NET...
BlueImp jQuery File Upload Plugin is one of the top favorites of GitHub and can be downloaded from this link. In this tutorial I will implement BlueImp jQuery File Upload plugin in an ASP.NET Core...
View ArticleCreate Number Paging with Custom Tag Helper in ASP.NET Core
Tag Helpers allow us to enhance HTML elements from server-side code. We will use this feature to create number based paging links in ASP.NET Core. We will be building this feature from scratch and...
View ArticleImplementing JWT Refresh Token in ASP.NET Core MVC
This tutorial is about JWT Refresh Token, what is does, how to generate it and how to use it with JWT Access Tokens. Most probable this tutorial will clear all your doubts about JWT access and refresh...
View ArticleZXing.Net implementation in ASP.NET Core
ZXing.NET is a library which supports decoding and generating of barcodes (like QR Code, PDF 417, EAN, UPC, Aztec, Data Matrix, Codabar) within images. In this tutorial I will implement it in ASP.NET...
View ArticleASP.NET Core Identity with MongoDB as Database {Detailed}
In this tutorial we will implement ASP.NET Core Identity with MongoDB as the database. So, the MongoDB will serve as the Identity Database instead of SQL Server. First, we will configure Identity to...
View ArticleIdentityServer with ASP.NET Core Identity and MongoDB as Database [Detailed...
In this tutorial we will set up IdentityServer4 with ASP.NET Core Identity from absolute beginning. The ASP.NET Identity will be configured with a MongoDB database. When a client will come to...
View ArticleIdentityServer Role and Policy Based Authentication
When we want to allow users in specific roles to access certain resources then we apply role based authentication. In the same way when users satisfying a policy are allowed to access certain...
View ArticleMulti File Upload with Progress Bar in ASP.NET CORE
Ever wonder how to show Real time Progress of files being upload to the server, well this tutorial will teach you all this in multiple ways. So make sure to read this tutorial in full and download the...
View ArticleASP.NET Core + Entity Framework Core + jQuery to Delete Records without Page...
In ASP.NET Core, you can perform the deletion of any row from an HTML Table located in the View, in such a way that there is No-Page reloading. You can achieve this using Entity Framework Core and...
View ArticleCreate ASP.NET Core Minimal API from Start till Finish
Minimal APIs are used to create HTTP APIs in a quick span of time with minimum dependencies. They are best suited for microservices and apps that require only minimum files with minimum dependencies....
View ArticleHost ASP.NET Core on Apache in Windows
Apache Web Server can be used to host ASP.NET Core apps. Here Apache is used as a reverse proxy server to redirect traffic to an ASP.NET Core web app running on Kestrel server. We will set the whole...
View ArticleImplementing Clean Architecure GitHub Repository by Steve “Ardalis” Smith
Clean Architecture is a popular software development architecture which can be used in .NET apps. In this tutorial we are going to implement the Clean Architecure GitHub Repository by Steve “Ardalis”...
View ArticleHow to use Self Signed Certificate in ASP.NET Core
In this article we will learn how to use Self-Signed Certificate (SSL) in ASP.NET Core app. This app is running in Kestrel Web Server and we will create our SSL from Powershell commands. Create and...
View ArticleHow to Host ASP.NET Core App in a Windows Service
We can host ASP.NET Core apps on Windows as a Windows Service. Note that this approach does not need IIS, Apache or Nginx. So the app automatically starts whenever the system restarts. Create ASP.NET...
View ArticleHost ASP.NET Core app on IIS
In this article we will host our ASP.NET Core app on Internet Information Services (IIS) in Windows. Make sure you have .NET SDK installed in your system. You can download it from here. Installing IIS...
View ArticleHost ASP.NET Core on Nginx in Linux
Nginx is the king of Web Servers and can be used to host ASP.NET Core apps on a Linux system. Nginx acts as a reverse proxy server to redirect traffic to an ASP.NET Core web app running on Kestrel...
View ArticleHost ASP.NET Core on Apache in Linux
In this tutorial we will host ASP.NET Core apps on Apache Web Server in Linux. Apache will be used as a reverse proxy server to redirect traffic to an ASP.NET Core web app running on Kestrel server....
View ArticleASP.NET Core – Duende IdentityServer authentication and authorization with...
In this tutorial we are going to implement Duende IdentityServer in ASP.NET Core app with ASP.NET Core Identity to provide authentication and authorization features. So users will be able to perform...
View Article