Posts

Showing posts with the label host agnostic framework

ASP.Net Core & Implications to Web Development

Introduction: ASP.Net Core, previously known as ASP.Net vNext is an open source, cross-platform, and modular web framework which was first released by Microsoft in June 2016. The ASP.Net Core Framework connects the two previously separate frameworks of ASP.Net MVC and ASP.Net Web API into a single programming model along with ASP.Net web pages. Architecture: ASP.Net Core 1.0 is not an addition to ASP.Net 6.0 – it is completely a new framework and a fundamental change to the ASP.Net environment. ASP.Net Core framework exists independently alongside ASP.Net and is a leaner, smaller, and modular framework. It is a web framework that has been optimised for the cloud and can run on Windows, Linux, and Mac. ASP.NET Core is not based on the System.Web.dll. Rather, it is based on a set of granular and well-factored NuGet packages. This makes it possible to optimise the applications to include only the required NuGet packages. The modular components of this architecture minimise the overh...