Tutorials on ASP.NET Core, Blazor, jQuery, JavaScript, Entity Framework, Identity, WordPress, SQL, HTML & more


Blazor QuickGrid Database Binding tutorial

Last Updated: September 17, 2024

Blazor QuickGrid component is used to display data from the database in tabular manner. Features like sorting & paging can also be added to it very easily. In this tutorial we are going to implement Blazor QuickGrid component in Blazor Web App from the very beginning. The source codes for this project is available from my GitHub repository.

(more…)

jQuery replaceWith() method – For replacing HTML elements in the DOM

Last Updated: August 24, 2024

If you want to replace one or more HTML elements on the DOM then use jQuery replaceWith() method.

(more…)

Blazor WebAssembly Authentication with ASP.NET Core Identity

Last Updated: September 13, 2024

Blazor WebAssembly apps can be secured with ASP.,NET Core Identity. We can provide login and logout feature for users through Identity so that only authenticated users are allowed to access the Blazor WebAssembly app.

(more…)

Blazor WebAssemble Authentication from Google

Last Updated: September 13, 2024

In this tutorial we are going to implement Authentication from Google feature in a Blazor WebAssembly app. We will also implement Oauth 2.0 and JWT Tokens for authentication purpose.

(more…)

jQuery index() method – Get the index of an element relative to its siblings

Last Updated: May 31, 2024

The jQuery Index method is very helpful in getting the index of an element relative to its siblings. For example – suppose there are few li elements inside a ul element and you have to find what’s the index of li that is clicked. In this condition you can use the .index() method of jQuery.

(more…)

ASP.NET Core – Duende IdentityServer authentication and authorization with Identity

Last Updated: September 5, 2026

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 login and logout on their Identity account which will be secured with Duende IdentityServer.

(more…)

ASP.NET Web Forms – Sorting GridView with jQuery Load method with no page postback

Last Updated: August 29, 2026

Did you know that jQuery can be used to sort an ASP.NET GridView asynchronously, allowing users to sort data without triggering a page postback? By handling the sorting operation on the client side with jQuery, you can make your GridView faster, cleaner, and more responsive.

Using jQuery for GridView sorting offers several advantages:

(more…)

Host ASP.NET Core on Apache in Linux

Last Updated: June 2, 2024

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. We will set the whole process in Ubuntu OS.

(more…)

Host ASP.NET Core on Nginx in Linux

Last Updated: November 26, 2025

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 server. In this tutorial we are going to host ASP.NET Core app on Ngnix in Ubuntu Linux from start and so kindly read this tutorial on one go to understand the full process.

(more…)

Host ASP.NET Core app on IIS

Last Updated: June 2, 2024

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.

(more…)