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


Managing ASP.NET Core app hosted on Kubernetes

Last Updated: November 18, 2023

asp.net core manage kubernetes

In this tutorial we will go through some necessary and detailed information that will be needed for managing your ASP.NET Core apps on Kubernetes. I will be proceeding from the last tutorial where I had Deployed ASP.NET Core App on Kubernetes. So make sure you have gone through the previous tutorial so that you can understand the kubernetes topics which we will be covering here.

(more…)

Deploy ASP.NET Core App on Kubernetes

Last Updated: February 18, 2024

deploy aspnet core app on kubernetes

In this ASP.NET Core Kubernetes Tutorial we will be deploying an ASP.NET Core app to Kubernetes from start till end. We will take the topic of Kubernetes Objects which are Pods, Deployments and Services. Finally, we will use these objects to host the ASP.NET Core app on Kubernetes. This tutorial will give you a solid foundation of K8s so make sure you go through the whole tutorial. Let us start it with any further delay.

(more…)

CRUD Operations in ASP.NET Core and SQL Server with Docker

Last Updated: November 17, 2023

asp.net core sql crud docker

In this tutorial we will perform CRUD Operations in as ASP.NET Core Docker app with SQL Server as a backend. We will use Docker Compose for this so there will be 2 containers one running the ASP.NET Core app and other SQL Server 2022.

(more…)

Multi-Container ASP.NET Core App with Docker Compose

Last Updated: November 23, 2023

multi container docker compose

We will create a Multi-Container app in ASP.NET Core Docker Compose. The containers will also communicate with each other. The ASP.NET Core app will contain projects which will be:

(more…)

How to Create Excellent Website for Classroom Projects

Last Updated: April 16, 2021

Nowadays, so much of our lives take place online, it's crucial that education offers students the opportunity to hone their digital skills. In classrooms all across Canada, more and more teachers are acknowledging the importance of bringing online literacy into the education system. This is creating a future generation with an unparalleled talent for creating online content.

(more…)

Deploy a Docker based ASP.NET Core app to Azure

Last Updated: November 11, 2023

deploy docker-aspnet-core-azure

In this tutorial we are going to perform ASP.NET Core Docker app Deployment to Azure cloud service provider. We have already created the app on our last tutorial whose link is - First ASP.NET Core web App in Docker Container. Once the deployment is completed, we will be able to view the app on the browser with a URL.

(more…)

ASP.NET Core APP with HTTPS in Docker

Last Updated: November 17, 2023

docker https

SSL Certificates are very necessary for the Trust, Identity and Encryption of an APP. In ASP.NET Core the apps use HTTPS Certificates by default, they use self-signed development certificates for development purpose. So, when you are hosting your app to a Docker Container then it is needed to tell docker where to find this development certificate in the machine. Once Docker knows the location of the HTTPS certificate then your app will start opening with https url, eg https://localhost:8001.

The procedure will be same for the production scenario also. So you can generate a free HTTPS certificate from Let's Encrypt, then tell your Docker app (which is running in Azure or AWS) to find the HTTPS certificate from a location.

(more…)

Create first ASP.NET Core App in a Docker Container

Last Updated: November 19, 2023

ASP.NET Core App in a Docker Container

In this ASP.NET Core Docker article we will create our first ASP.NET Core App running from a Docker Container. We will do all this from the very beginning so it will be a good learning experience for you. We will also go through the installation of Docker in Windows, MacOS and Linus, and will also learn some of the most needed Docker commands which you need to know as an ASP.NET Core developer.

This Docker article is quite big and will take you around 2 hours to read it completely. It is fully loaded with informations and after completing it you are going to feel very comfortable with Docker. This is a promise from my end. So 2 hours it all needs, else you can waste it on watching Netflix.
(more…)

Filtering Elements with jQuery .filter() method

Last Updated: June 3, 2021

jquery filter

Use jQuery Filter method to select elements based on certain criteria. Example – with .filter() method you can select all p elements in your page that has a certain class.

(more…)

Blazor WebAssembly : Call Web APIs to perform CRUD Operations

Last Updated: December 10, 2022

Blazor WebAssembly Web API

What is Blazor WebAssembly? A WebAssembly is a virtual machine that runs inside the browser. It converts high level language codes like C# into low level language code so that they can be run on the browser directly. Blazor WebAssembly (WASM) apps executes directly in the browser on a WebAssembly, just like JavaScript.

(more…)