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


ASP.NET Web Forms – Implementation of BlueImp jQuery File Upload GitHub Plugin

Last Updated: August 27, 2026

BlueImp jquery file upload asp,net web forms

One of the most popular and feature-rich jQuery file upload plugins is jQuery File Upload by BlueImp. It provides a powerful and flexible solution for adding file-upload functionality to your web applications. You can download the plugin directly from its GitHub repository using this link.

(more…)

Complete Overview of Amazon AWS Certified Solutions Architect – Professional Certification

Last Updated: July 18, 2025

aws certification

IT is currently one of the most rapidly developing fields in the world and more people are aspiring to enter this industry as a result. This has made it a very competitive space and the employers always looking to hire the most experienced individuals. So, this means that if you want to find your place in IT, you will have to develop your expertise by gaining new knowledge and skills. There are a lot of ways to do that but one of the top methods is to obtain a certification. You can turn to a huge number of companies that provide the credentials for the IT specialists but one of the best has to Amazon AWS Certification Practice Test Questions.

(more…)

How to Quickly Implement BlueImp jQuery File Upload GitHub Plugin in ASP.NET Core

Last Updated: August 27, 2026

BlueImp jquery file upload

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 Application. It will have the following features:

(more…)

How to use jQuery to update records from inside the GridView with no Page Postback and without using Update Panel

Last Updated: August 29, 2026

update gridview with jquery

There is no need to use the GridView’s OnRowEditing & OnRowUpdating events to update records. With jQuery, you can easily handle the entire update process directly from within the ASP.NET GridView without triggering a page postback. In this tutorial, I will show you how to use jQuery to update records directly inside the GridView, creating a faster and smoother user experience with No Page Postback.

(more…)

Call Web API from JavaScript with XMLHttpRequest (XHR)

Last Updated: August 22, 2026

javascript api

JavaScript is a powerful programming language that can be used to Call Web API directly from the browser. In this tutorial, I will show you how to call a Web API using JavaScript, specifically with the XMLHttpRequest (XHR) object. I have already created a Web API built with ASP.NET Core that follows the RESTful pattern and supports all the essential CRUD operations. The API provides flight reservation data to clients in JSON format and allows clients to search reservations by ID, update existing reservations, delete reservations, and perform other related operations. I will use JavaScript and the XHR object to communicate with this API.

This tutorial is a part of the ASP.NET Core API series which contains 5 tutorials to master this area:

(more…)

How to perform Localization with Portable Object (PO) files in an ASP.NET Core

Last Updated: March 10, 2024

Portable Object files also known commonly as PO files are text based files containing the entry holding the relation between an original untranslated string and its corresponding translation. They are a substitute for resource files to perform localization of a website built in asp.net core.

(more…)

Globalization and Localization with Resource Files in ASP.NET Core

Last Updated: March 10, 2024

Globalization Localization Resource

(more…)

How to use Globalization and localization in ASP.NET Core

Last Updated: March 10, 2024

Globalization Localization

(more…)

How to implement gRPC in ASP.NET Core

Last Updated: October 6, 2024

grpc asp.net core

gRPC is a Remote Procedure Call protocol developed by Google which is up to 6 times faster than REST APIs. In this tutorial we will create a gRPC service in ASP.NET Core. The following topics are covered:
  • Unary
  • Server Streaming
  • Client Streaming
  • Bi-directional Streaming
The full source codes created in this tutorial can be downloaded by the download link given at the last paragraph of this tutorial. So enjoy learning gRPC.
(more…)

Show GridView Data in Left to Right manner

Last Updated: June 6, 2021

show gridview data in left to right manner

The GridView by default shows the data from ‘top to bottom’. If you want to show the data from left to right then you can use JavaScript to do this work. Here in this tutorial I will use JavaScript to swap the GridView’s Rows and Columns to bring 2 changes:

(more…)