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


How to create jQuery Treeview with minimum codes

Last Updated: June 4, 2021

jquery treeview

The jQuery Treeview can be created easily with just a few lines of code. In this tutorial I will create a treeview in HTML’s ul and li tags.

(more…)

JavaScript Loop: Iterate through an Array or an Object (multiple examples)

Last Updated: June 4, 2021

javascript jquery loop

The JavaScript Loop is used to iterate through an array of items (which can be a number array, string array, etc) or objects. There are many ways to do it and so in this tutorial we will look on them one by one.

(more…)

Read XML file with jQuery Load Method and display it in a HTML Table

Last Updated: June 4, 2021

jquery load xml example

We all know that the jQuery Load method can be used to read an XML file, but developers often ask how to display this XML file to a HTML table. Therefore I decided to write a detailed tutorial that will:

(more…)

How to use sp_executesql to Execute Dynamic Statements and Stored Procedures

Last Updated: June 8, 2021

sp_executesql

The sp_executesql statement is used to execute dynamically built T-SQL Statements and stored procedures. It can have both input and output parameters and is very useful in SQL development.

(more…)

How to Upload Multiple files using jQuery AJAX in ASP.NET MVC

Last Updated: June 7, 2021

jQuery upload files

You will take just 3 minutes to read and understand this jQuery file Upload tutorial that uses AJAX and does not perform page reloading when saving the files on the server.

Moreover it is able to upload multiple files at the same time.

(more…)

How to create jQuery Autocomplete Feature in Step by Step manner

Last Updated: June 4, 2021

jquery autocomplete

The jQuery Autocomplete feature provides suggestions when you type on a text box. It uses AJAX to fetch these suggestions from the server. The autocomplete feature is very popular and is used by Google Search to. In this tutorial I will teach you how to make this jQuery Autocomplete feature in Step-by-Step manner.

(more…)

Tutorial – Consuming ASP NET Web API in jQuery from Start [with Code]

Last Updated: June 7, 2021

consuming asp net web api in jquery

On my last tutorial I taught How to Implement ASP NET Web API. The Web API returned products from database in JSON. Here I will show how to consume this API in jQuery.

(more…)

Tutorial – Consuming ASP NET Web API from Start [with Code]

Last Updated: June 7, 2021

consuming asp net web api

On my last tutorial I taught How to Implement ASP NET Web API which returned products from database in JSON. Now I will consume this Web API in ASP.NET MVC.

Let start with the API consuming part.

(more…)

Tutorial – Implementing your own ASP NET Web API from Start [with Code]

Last Updated: June 7, 2021

implement asp net web api

In this Tutorial I will teach how to Implement your own ASP NET Web API from start. This API will fetch records from the database and provides the consumer with these records in JSON format. This API also implements authentication, meaning users have to provide API Key and Secret for consuming this API.

(more…)

How to Show different loading images for different AJAX calls in jQuery

Last Updated: June 4, 2021

jquery load image

Suppose you have a page where different AJAX calls are taking place and you want to indicate your users which AJAX call is currently taking place. You can indicate this by showing different loading images for different AJAX calls.

(more…)