ASP.NET
ASP.NET is a server-side web-application framework designed for web development to produce dynamic web pages. It was developed by Microsoft to allow programmers to build dynamic web sites, applications and services. The name stands for Active Server Pages Network Enabled Technologies.
ASP.NET was first announced to the public under the codename ASP+, and is a re-implementation of Microsoft's Active Server Pages technology. ASP.NET is built on the Common Language Runtime, allowing programmers to write ASP.NET code using any supported.NET language. The ASP.NET SOAP extension framework allows ASP.NET components to process SOAP messages.
In 2016, Microsoft released ASP.NET Core as ASP.NET's successor. This new version is a re-implementation of ASP.NET as a modular web framework, together with other frameworks like Entity Framework. The new framework uses the new open-source.NET Compiler Platform and is cross platform. ASP.NET MVC, ASP.NET Web API, and ASP.NET Web Pages have merged into a unified MVC 6.
Programming models
ASP.NET supports a number of programming models for building web applications:- ASP.NET Web Forms – A framework for building modular pages out of components, with UI events being processed server-side. This framework is not included in the ASP.NET Core versions; it only works in the "classic" ASP.NET, on Windows.
- ASP.NET MVC – allows building web pages using the model–view–controller design pattern.
- ASP.NET Web Pages – A lightweight syntax for adding dynamic code and data access directly inside HTML markup.
- ASP.NET Web API – A framework for building Web APIs on top of the.NET Framework.
- ASP.NET WebHooks – Implements the Webhook pattern for subscribing to and publishing events via HTTP.
- SignalR – A real-time communications framework for bi-directional communication between client and server.
- ASP.NET Handler – Components that implement the
System.Web.IHttpHandlerinterface. Unlike ASP.NET Pages, they have no HTML-markup file, no events and other supporting. All they have is a code-file that writes some data to the server HTTP response. HTTP handlers are similar to ISAPI extensions. - ASP.NET AJAX – An extension with both client-side as well as server-side components for writing ASP.NET pages that incorporate Ajax functionality.
- ASP.NET Dynamic Data – A scaffolding extension to build data driven web applications.
IIS integrated pipeline
Third-party frameworks
It is not essential to use the standard Web forms development model when developing with ASP.NET. Noteworthy frameworks designed for the platform include:- Base One Foundation Component Library is RAD framework for building.NET database and distributed computing applications.
- DotNetNuke is an open-source solution that provides both a web application framework and a content management system that allows for advanced extensibility through modules, skins, and providers.
- Castle MonoRail, an open-source MVC framework with an execution model similar to Ruby on Rails. The framework is commonly used with Castle ActiveRecord, an ORM layer built on NHibernate.
Versions