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


Implementing TheMovieDB (TMDB) API in ASP.NET MVC – [with full codes]

Last Updated: June 7, 2021

TheMovieDB api

Introduction to TheMovieDB API

The Movie Database (TMDb) is a community built movie and TV database. Every piece of data has been added dating back to 2008. TMDb's strong international focus and breadth of data is largely unmatched and available through the mean of TheMovieDb API. You can use this API to create different sort of features like searching movie, actors, TV series, companies, reviews and much more.

(more…)

Quickly understanding the jQuery Document Ready – $(document).ready() method

Last Updated: June 4, 2021

jquery document ready

The jQuery Document Ready makes sure the page DOM is ready for the jQuery codes to execute. Remember to put all your jQuery Codes inside it.

(more…)

How to Create Bootstrap Modal in your Website

Last Updated: June 8, 2021

bootstrap modal

A Bootstrap Modal is used to show important information to site’s visitors. This can be some sort of confirmation (like cookies information, updating or deleting profile), session time out or a new product launch. You will also find that these Bootstrap Modals are used by website owners to collect email addresses for newsletter subscription.

(more…)

How to Restore Database in SQL Server

Last Updated: June 8, 2021

restore database sql server

If you have the Database Backup File then you can easily restore it to your SQL Server. I will use SQL Server Management Studio (SSMS) to restore the database.

(more…)

How to Backup SQL Database using SSMS

Last Updated: June 8, 2021

backup sql database

In this tutorial I will teach you how to Backup SQL Database with your SQL Server Management Studio (SSMS). This will save you from losing your data in case of any SQL Server problem.

SQL Database Backup Steps

The following steps explain how to do Full Backup of your database using SSMS.

STEP 1: Expand the Database node

Click the plus sign in-front of the Databases node. This will show all the databases.

(more…)

jQuery grep – $.grep() Method

Last Updated: June 4, 2021

jquery grep

jQuery .grep() method is used to filter an array based on a provided condition. The condition is provided by a filter function. For an item to be included in the result the filter function should return true for it.

(more…)

jQuery CSS Method – The Complete Guide with Examples

Last Updated: June 4, 2021

jQuery CSS

The jQuery CSS Method returns the CSS Style property value of the first matched element. It can also set, single or multiple CSS Style properties on the selector.

Note that the selector can itself be a single or multiple elements.

Syntax of jQuery CSS Method

There are 5 syntax of this method, you can use anyone of them depending upon the situation.

(more…)

jQuery Find Method – The Complete Tutorial for Programmers

Last Updated: June 4, 2021

jquery find

The jQuery Find Method (.find()) returns all the descendants of the selector. The descendants are the elements that lie inside the selected element. These can be it's children, children of children, children of children of children, and so on.

(more…)

jQuery Each: 7 Coding Examples that you can’t miss as a Developer

Last Updated: June 4, 2021

jquery each

You will now learn all the ways to use the jQuery Each method from this tutorial. This is the most complete guide to master this method.

The best part?

I’m going to show you 7 ways to use jQuery Each method in your website.

In short: if you want to implement .each() method, then you’ll love this guide.

Let’s get started.

(more…)

How to Populate Cascading Dropdownlist Controls with AJAX in ASP.NET

Last Updated: June 4, 2021

populate cascading dropdownlist

Cascading dropdownlist Controls are those that depend on the selected value of each other dropdownlist. Here, when a value is selected on one dropdownlist, the depending dropdownlist is populated with another set of values.

A classic example of cascading dropdownlist is of Countries & Cities. One dropdownlist carries Country names and other carries the Cities of the Selected Country.

When a user selects a country (example United States) in the Country dropdownlist then the City dropdownlist is populated with the cities of United States (example NYC, Albany, San Francisco, Washington DC, Chicago, Los Angeles).

(more…)