How to create an ASP.Net Core Custom Middleware

Middleware in ASP.Net Core refers to a piece of software code that is assembled in an app pipeline to process requests and responses. In other words, middleware determines how the application is going to react in response to HTTP requests. Create a Custom Middleware in ASP.Net Core Each of the components essentially performs two tasks,... » read more

Startup.cs Class in ASP.NET Core explained

Startup.cs file in .NET Core The primary task of the Startup class is configuring the request pipeline, the series of request delegates that get called serially. This way, the class not only serves to be the starting point of the application but also determines the course the application would eventually take. No wonder all of... » read more

An Introduction to Sessions in ASP.NET MVC Core 2.2

This article will demonstrate how to use session in ASP.NET core 2.1, 2.2. We will learn how to configure the session in the startup.cs class, sets a value of a session variable, and then read the value of that session and display it on the user interface. How to use Sessions in ASP.NET MVC Core... » read more

What’s New in ASP.NET Core 3.0?

What is .NET Core? .NET Core is an open source, latest software development Framework by Microsoft which is used to create multiple types of applications. .NET Core is completely independent of the .NET framework and is written from scratch having different characteristics and different features. It can be used with almost all operating systems including... » read more