Tutorialsteacher

Follow Us

Articles
  • C#
  • C# OOP
  • ASP.NET Core
  • ASP.NET MVC
  • LINQ
  • Inversion of Control (IoC)
  • Web API
  • JavaScript
  • TypeScript
  • jQuery
  • Angular 11
  • Node.js
  • D3.js
  • Sass
  • Python
  • Go lang
  • HTTPS (SSL)
  • Regex
  • SQL
  • SQL Server
  • PostgreSQL
  • MongoDB
  • ASP.NET Core - Get Started
  • .NET Core Overview
  • ASP.NET Core Overview
  • Install .NET Core
  • Create ASP.NET Core MVC
  • Project Structure
  • wwwroot
  • Program.cs
  • Command-line Interface
  • Dependency Injection
  • Built-in IoC Container
  • Middleware
  • Add Custom Middleware
  • Configure Default File
  • Environment Variable
  • Exception Handling
  • Serving Static Files
  • Serving Static Files From Other Folder
  • Logging in .NET Core
  • Logging in ASP.NET Core
  • .NET Core Application Types
  • Code Sharing
  • Target Multiple Frameworks
Entity Framework Extensions - Boost EF Core 9
  Bulk Insert
  Bulk Delete
  Bulk Update
  Bulk Merge

ASP.NET Core Overview

ASP.NET Core is the new and totally re-written version of the ASP.NET web framework. It is a free, open-source, and cross-platform framework for building cloud-based applications, such as web apps, IoT apps, and mobile backends. It is designed to run on the cloud as well as on-premises.

Same as .NET Core, it was architected modular with minimum overhead, and then other more advanced features can be added as NuGet packages as per application requirement. This results in high performance, require less memory, less deployment size, and easy to maintain.

Why ASP.NET Core?

ASP.NET Core has the following advantages over traditional ASP.NET web framework:

  • Supports Multiple Platforms: ASP.NET Core applications can run on Windows, Linux, and Mac. So you don't need to build different apps for different platforms using different frameworks.
  • Fast: ASP.NET Core no longer depends on System.Web.dll for browser-server communication. ASP.NET Core allows us to include packages that we need for our application. This reduces the request pipeline and improves performance and scalability.
  • IoC Container: It includes the built-in IoC container for automatic dependency injection which makes it maintainable and testable.
  • Integration with Modern UI Frameworks: It allows you to use and manage modern UI frameworks such as AngularJS, ReactJS, Umber, Bootstrap, etc. using Bower (a package manager for the web).
  • Hosting: ASP.NET Core web application can be hosted on multiple platforms with any web server such as IIS, Apache etc. It is not dependent only on IIS as a standard .NET Framework.
  • Code Sharing: It allows you to build a class library that can be used with other .NET frameworks such as .NET Framework 4.x or Mono. Thus a single code base can be shared across frameworks.
  • Side-by-Side App Versioning: ASP.NET Core runs on .NET Core, which supports the simultaneous running of multiple versions of applications.
  • Smaller Deployment Footprint: ASP.NET Core application runs on .NET Core, which is smaller than the full .NET Framework. So, the application which uses only a part of .NET CoreFX will have a smaller deployment size. This reduces the deployment footprint.

Cross-platform ASP.NET Core

ASP.NET Core applications run on the Windows, Mac or Linux OS using the .NET Core framework (now known as .NET 5/6/7). ASP.NET Core web application can be deployed on these OS because ASP.NET Core web application are self-hosted using internal web server called Kestrel. The platform specific web server such as IIS is used as external webserver that sends requests to the internal webserver Kestreal.

Cross-platform ASP.NET Core Framework

The following image shows how the http requests will be handled for ASP.NET Core web applications.

ASP.NET Core Web Request Handling

ASP.NET Core Version History

Microsoft launched ASP.NET web framework along with .NET Framework 1.0 in 2002. It was designed to run on Windows platform.

In 2016, Microsoft launched ASP.NET Core framework which can run on Windows, Mac, and Linux using .NET Core framework. It had many advantages over traditional ASP.NET framework.

The next version of ASP.NET Core after version 3.1 was named as ASP.NET 5 which is unified framework for all types of application. So, ASP.NET 5 and later versions are ASP.NET Core framework only. They just named back to original name.

ASP.NET Core Versions

The .NET 5 includes core libraries of ASP.NET 5 framework so you don't need to install ASP.NET 5 separately than .NET 5.

VersionVisual StudioRelease DateEnd of Support
ASP.NET 7 - Latest VersionVisual Studio 2022 v17.4Nov 8, 2022May 14, 2024
ASP.NET 6 (LTS)Visual Studio 2022Nov 9, 2021Nov 12, 2024
ASP.NET 5Visual Studio 2019Nov 10, 2020May 10, 2022
ASP.NET Core 3.1 (LTS)Visual Studio 2019Dec 3, 2019Dec 13, 2022
ASP.NET Core 3.0Visual Studio 2019Sep 23, 2019Mar 3, 2020
ASP.NET Core 2.1 (LTS)Visual Studio 2017, 2019May 30, 2018Aug 21, 2021
ASP.NET Core 2.0Visual Studio 2017, 2019Aug 14, 2017Oct 1, 2018
ASP.NET Core 1.0Visual Studio 2017Jun 27, 2016Jun 27, 2019

Let's download and install .NET Core/ASP.NET Core in the next chapter.

TUTORIALSTEACHER.COM

TutorialsTeacher.com is your authoritative source for comprehensive technologies tutorials, tailored to guide you through mastering various web and other technologies through a step-by-step approach.

Our content helps you to learn technologies easily and quickly for learners of all levels. By accessing this platform, you acknowledge that you have reviewed and consented to abide by our Terms of Use and Privacy Policy, designed to safeguard your experience and privacy rights.

[email protected]

ABOUT USTERMS OF USEPRIVACY POLICY
copywrite-symbol

2024 TutorialsTeacher.com. (v 1.2) All Rights Reserved.