ASP.NET

Last updated
ASP.NET (software)
Developers Microsoft, Scott Guthrie
Initial releaseJanuary 5, 2002;23 years ago (2002-01-05)
Stable release
4.8.1 / August 9, 2022;3 years ago (2022-08-09) [1]
Repository
Written in .NET languages
Operating system Microsoft Windows, Linux, macOS
Platform .NET Framework
Type Web framework
License Proprietary software [2]
Website dotnet.microsoft.com/en-us/apps/aspnet   OOjs UI icon edit-ltr-progressive.svg
ASP.NET (file format)
Filename extension .aspx, .asmx, .aspc, [3] .cshtml , .vbhtml
Internet media type
text/html
Developed by Microsoft

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.[ citation needed ]

Contents

ASP.NET was first announced to the public under the codename ASP+, and is a re-implementation of Microsoft's Active Server Pages (ASP) technology. [3] ASP.NET is built on the Common Language Runtime (CLR), allowing programmers to write ASP.NET code using any supported .NET language. [4] 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 (codename "Roslyn") and is cross platform. ASP.NET MVC, ASP.NET Web API, and ASP.NET Web Pages (a platform using only Razor pages) have merged into a unified MVC (model–view–controller) 6. [5]

Programming models

ASP.NET supports a number of programming models for building web applications: [6]

Other ASP.NET extensions include:

IIS integrated pipeline

On IIS  6.0 and lower, pages written using different versions of the ASP framework cannot share session state without the use of third-party libraries. This does not apply to ASP.NET and ASP applications running side by side on IIS 7. With IIS 7.0, modules may be run in an integrated pipeline that allows modules written in any language to be executed for any request. [9]

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:

Versions

ASP.NET's release history tightly correlates with the .NET Framework releases:

DateVersionRemarksNew ASP.NET related features
January 16, 2002Unsupported: 1.0First version

released together with Visual Studio .NET

  • Object-oriented Web application development supporting inheritance, polymorphism and other standard OOP features
    • Developers are no longer forced to use Server.CreateObject(...), so early-binding and type safety are possible.
  • Based on Windows programming; the developer can make use of DLL class libraries and other features of the Web server to build more robust applications that do more than simply rendering HTML (e.g., exception handling)
April 24, 2003Unsupported: 1.1released together with Windows Server 2003

released together with Visual Studio .NET 2003

  • Mobile controls
  • Automatic input validation
November 7, 2005Unsupported: 2.0

codename Whidbey
released together with Visual Studio 2005 and Visual Web Developer Express
and SQL Server 2005

  • New data controls (GridView, FormView, DetailsView)
  • New technique for declarative data access (SqlDataSource, ObjectDataSource, XmlDataSource controls)
  • Navigation controls
  • Master pages
  • Login controls
  • Themes
  • Skins
  • Web parts
  • Personalization services
  • Full pre-compilation
  • New localization technique
  • Support for 64-bit processors
  • Provider class model
November 21, 2006Unsupported: 3.0Released with Windows Vista
November 19, 2007Unsupported: 3.5Released with Visual Studio 2008 and Windows Server 2008
  • New data controls (ListView, DataPager)
  • ASP.NET AJAX included as part of the framework
  • Support for HTTP pipelining and syndication feeds.
  • WCF support for RSS, JSON, POX and Partial Trust
  • All the .NET Framework 3.5 changes, like LINQ etc.
August 11, 2008Unsupported: 3.5 Service Pack 1Released with Visual Studio 2008 Service Pack 1
  • Incorporation of ASP.NET Dynamic Data
  • Support for controlling browser history in an ASP.NET AJAX application
  • Ability to combine multiple JavaScript files into one file for more efficient downloading
  • New namespaces System.Web.Abstractions and System.Web.Routing
April 12, 2010Unsupported: 4.0Released with Visual Studio 2010

Parallel extensions and other .NET Framework 4 features

The two new properties added in the Page class are MetaKeyword and MetaDescription.

August 15, 2012Unsupported: 4.5Released with Visual Studio 2012 and Windows Server 2012 for Windows 8

Parallel extensions and other .NET Framework 4.5 features

October 17, 2013Unsupported: 4.5.1Released with Visual Studio 2013 [10] for Windows Server 2012 R2 and Windows 8.1
May 5, 2014 [11] Supported: 4.5.2
  • Higher reliability HTTP header inspection and modification methods
  • New way to schedule background asynchronous worker tasks
July 20, 2015 [11] Supported: 4.6Released [12] with Visual Studio 2015 [13] and EF 7 Previews for Windows Server 2016 and Windows 10
  • HTTP/2 support when running on Windows 10
  • More async task-returning APIs
November 30, 2015 [11] Supported: 4.6.1
August 2, 2016 [11] Supported: 4.6.2
  • Improved async support (output-cache and session providers)
April 11, 2017 [11] Supported: 4.7Included in the Windows 10 Creators Update [14]
  • operating system support for TLS protocols
October 17, 2017 [11] Supported: 4.7.1Included in the Windows 10 Fall Creators Update. [15]
  • Improved accessibility
  • Value tuple types serialization
  • SHA-2 support
April 30, 2018 [11] Supported: 4.7.2
August 09, 2022 [11] Latest version:4.8.1 Released [16]
  • JIT and NGEN Improvements
  • Updated ZLib
  • Reducing FIPS Impact on Cryptography
  • Accessibility Enhancements for WinForms
  • Service Behavior Enhancements for WCF
  • High DPI Enhancements, UIAutomation Improvements for WPF
November 18, 2015Unsupported: 5 RC1This version was later separated from ASP.NET and brought into a new project called ASP.NET Core, whose versioning started at 1.0. [17] An entirely new project with different development tenets and goals
Legend:
Unsupported
Supported
Latest version
Preview version
Future version

Other implementations

The Mono Project supports "everything in .NET 4.7 except WPF, WWF, and with limited WCF and limited ASP.NET async stack." [18] ASP.NET can be run with Mono using one of three options: Apache hosting using the mod_mono module, FastCGI hosting, and XSP.

References

  1. ".net framework download page".
  2. "Microsoft .NET Framework Redistributable EULA". MSDN . Microsoft. 13 September 2006. Archived from the original on April 2, 2015. Retrieved February 28, 2015.
  3. 1 2 Kinsman, Chris (July 2000). "Introduction to ASP+". DevX. Archived from the original on 2003-02-02. Retrieved 2025-08-13.
  4. MacDonald, Matthew; Szpuszta, Mario (2005). Pro ASP.NET 2.0 in C# 2005 (1st ed.). Apress. pp. 5–6. ISBN   1-59059-496-7. [...] ASP.NET pages and web services are executed within the CLR (common language runtime), so they can be authored in any language that has a CLR-compliant compiler. [...] ASP.NET gives you the ability to code in any supported .NET language (including Visual Basic, C#, J#, and many other languages that have third-party compilers).
  5. FitzMacken, Tom (2014-12-11). "ASP.NET 5 Overview". ASP.NET. Archived from the original on 2014-11-15.
  6. "Choose between ASP.NET and ASP.NET Core". Microsoft Docs. 2018-03-14. Archived from the original on 2018-05-09.
  7. "ASP.NET Web Pages (Razor) FAQ". docs.microsoft.com.
  8. Mike, Wasson (30 September 2022). "Get Started with ASP.NET Web API 2 (C#)". docs.microsoft.com.
  9. "How to Take Advantage of the IIS 7.0 Integrated Pipeline". iis.net. 14 June 2022. Archived from the original on 24 March 2010. Retrieved 26 January 2009.
  10. "Announcing release of ASP.NET and Web Tools for Visual Studio 2013".
  11. 1 2 3 4 5 6 7 8 ".net framework product lifecycle".
  12. "Announcing .NET Framework 4.6".
  13. "Visual Studio 2015 and Visual Studio 2013 Update 5 Released". msdn.com. Microsoft. 20 July 2015.
  14. "Announcing the .NET Framework 4.7". 5 April 2017.
  15. "Announcing the .NET Framework 4.7.1". 17 October 2017.
  16. "Announcing the .NET Framework 4.8". 18 April 2019.
  17. "Releases". GitHub.
  18. "Compatibility". Mono. Retrieved 13 August 2025.