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


How to Create an “Instant Username Availability” checking feature in ASP.NET

Last Updated: June 6, 2021

Instant Username Availability Check feature

The Instant Username Availability Check feature will enable visitors to easily find out which usernames are available and which are already taken. So when they come to create their account on your website they don’t have to:

(more…)

How to use jQuery .getJSON() Method to perform AJAX work

Last Updated: June 4, 2021

jquery getjson

The jQuery getJSON Method (.getJSON()) is an AJAX method that is used to fetch JSON data using HTTP GET request.

(more…)

4 jQuery Timer examples which all developers should know

Last Updated: June 4, 2021

jquery timer

In this tutorial I will use jQuery Timer features to create few examples like Image Slider, time clock, stop watch and random background color changing effect. These examples are created with setInterval function of JavaScript.

(more…)

Understanding “setTimeout()” and “setInterval()” timer methods in jQuery/JavaScript

Last Updated: June 4, 2021

setTimeout setInterval

The 2 timer methods of JavaScript that are widely used in jQuery are setTimeout() and setInterval().

These 2 methods allow execution of a code at specified time intervals.

(more…)

Exposing Multiple Ways to call Partial Views in ASP.NET MVC – with codes

Last Updated: June 7, 2021

using partial view

A Partial View is just a view that is rendered inside another view. It helps to break a large view into smaller components to remove code duplication and increase reusability. By using partial views you can help your fellow developers to understand the code much faster and easily. In this tutorial I will teach how to use Partial Views in your ASP.NET MVC application, this includes their binding from the Model and Rendering inside the Parent View.

(more…)

What is JSONP and how to use it in jQuery & JavaScript

Last Updated: June 4, 2021

jquery jsonp

JSONP stands for JSON with padding. The padding refers the function call that wraps the JSON object.

(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…)