Fact-checked by Grok 2 weeks ago

ASP.NET

ASP.NET is a developed by for building web applications and services. Its modern iteration, , is open-source and cross-platform, running on Windows, , macOS, and in containers. It enables developers to create dynamic websites, web APIs, and cloud-based services using languages like C# and technologies such as , CSS, , and syntax. Originally introduced as part of the .NET Framework in 2002, ASP.NET provided a server-side model for developing dynamic web pages, succeeding Active Server Pages (ASP). The legacy ASP.NET is Windows-only and proprietary, and has been in maintenance mode since 2022, receiving only security updates. Over time, it evolved to include multiple programming models, such as Web Forms for rapid development with drag-and-drop controls, MVC (Model-View-Controller) for structured separation of concerns, and Web API for building RESTful services. In 2016, Microsoft released ASP.NET Core, a redesigned, modular, and high-performance version that is cross-platform and open-source under the . ASP.NET Core runs on the .NET runtime (formerly .NET Core), supporting features like , middleware pipelines, and integration with for data access. It powers interactive applications with for client-side web UI using C#, real-time functionality via , and scalable APIs with built-in support for OpenAPI (Swagger). Key advantages of ASP.NET include its performance, as demonstrated in TechEmpower benchmarks where it outperforms many popular s, and its seamless integration with for cloud deployment. As of November 2025, is the recommended for new development, with the recent release of .NET 10 / 10.0 focusing on enhanced security, minimal APIs, and improved developer productivity. The 's ecosystem supports , single-page applications (SPAs), and progressive web apps (PWAs), making it a cornerstone of enterprise .

History and Development

Origins in .NET Framework

ASP.NET originated as a core component of Microsoft's , announced in July 2000 at the Professional Developers Conference (PDC) as part of the broader .NET Platform initiative aimed at advancing web services and application development. Development began in the under the codename Next Generation Windows Services (NGWS), evolving into a unified framework for building scalable web applications. Following the announcement, released initial beta versions of ASP.NET in 2000, with additional betas in 2001 to refine features and gather developer feedback before stabilization. The first stable release, ASP.NET 1.0, launched on February 13, 2002, integrated with 1.0 to provide a robust server-side . Designed as the successor to classic (ASP), ASP.NET shifted from interpreted scripting to compiled code execution, enabling models and seamless integration with .NET languages such as C# and VB.NET for enhanced performance and productivity. This evolution addressed limitations in classic ASP, such as runtime parsing and COM interop inefficiencies, by leveraging the (CLR) for managed code execution. At launch, ASP.NET introduced key innovations including server controls—reusable components that abstract HTML rendering and handle user interactions declaratively—and view state, a mechanism for persisting page and control data across HTTP requests without server-side session storage. Additionally, provided a disconnected data access architecture with datasets and data adapters, facilitating efficient integration of database operations into web applications. Early adoption faced challenges due to its exclusive dependency on and (IIS) for hosting, limiting deployment options compared to platform-agnostic alternatives. Developers transitioning from classic ASP's procedural scripting encountered a steeper , requiring to object-oriented paradigms, state management concepts like view state, and the post-back model. Despite these hurdles, ASP.NET quickly gained traction among enterprise developers for its structured approach to .

Evolution and Key Milestones

ASP.NET evolved through iterative enhancements to the .NET Framework, introducing features that improved developer productivity and capabilities. The release of .NET Framework 2.0 in November 2005 marked a significant milestone, bringing master pages for consistent layout management across pages and initial support for through extensions that enabled partial page updates without full postbacks. In 2007, .NET Framework 3.5 extended these capabilities with the introduction of (LINQ), allowing developers to query data sources using a unified syntax integrated into C# and , which simplified data access in ASP.NET applications. By 2010, .NET Framework 4.0 further refined the framework with a streamlined Web.config file to reduce configuration complexity and built-in URL routing for Web Forms, enabling cleaner, SEO-friendly URLs without mapping directly to physical files. A pivotal shift occurred in 2009 with the release of , which provided an alternative to the traditional Web Forms model by emphasizing the Model-View-Controller pattern for better , testability, and maintainability in . This parallel programming model addressed growing demands for more structured architectures in complex applications. The most transformative milestone came in 2016 with the release of , a complete rewrite as an open-source, cross-platform framework under .NET Core, unifying , , and into a single, modular runtime. This evolution was driven by needs for higher performance in resource-constrained environments, seamless integration with cloud platforms like , and incorporation of open-source community feedback to enhance modularity and extensibility. Subsequent developments included the unification of .NET Framework and .NET Core into a single .NET platform starting with .NET 5 in November 2020, which streamlined development by making the recommended path for new web applications and emphasizing cross-platform capabilities. Key (LTS) releases, such as .NET 6 in 2021 and .NET 8 in 2023, further advanced performance, security, and features like minimal APIs and enhanced support, with .NET 9 released in November 2024 continuing this trajectory as of November 2025.

Core Architecture

ASP.NET Framework Components

The ASP.NET Framework relies on the (CLR) as its core runtime environment, enabling the execution of managed code written in languages like C# and VB.NET. The CLR provides essential services such as just-in-time () compilation, automatic through garbage collection, and to prevent runtime errors like invalid casts or null reference exceptions. This integration ensures that ASP.NET applications run in a secure, verifiable environment where code is executed within application domains for isolation and resource management. Key subsystems in the ASP.NET Framework include the HTTP runtime, which processes incoming HTTP requests by parsing them, routing to appropriate handlers, and managing the overall . Configuration is handled primarily through the Web.config file, an XML-based structure that defines settings for the application, such as connection strings, custom errors, and HTTP module registrations, allowing hierarchical inheritance from machine-wide to application-specific levels. The compilation model supports dynamic , where pages and code are compiled on the first request for rapid development, or pre-compilation, which builds assemblies in advance for deployment to improve and enable error detection before runtime. The page framework forms a central component, implementing an event-driven lifecycle that begins with request acquisition by the HTTP runtime, proceeds through initialization, loading of view state, event handling, and data binding, and concludes with rendering the response to the client. This lifecycle supports server controls, such as the for displaying tabular data with built-in sorting and paging, and validation controls like for ensuring input integrity without custom code. These controls are instantiated and managed during specific lifecycle phases to maintain state across postbacks. Integration with Windows services is foundational, particularly with (IIS) for hosting, where ASP.NET extends IIS through ISAPI filters and extensions in classic mode or integrated pipeline mode for seamless request processing. Authentication providers, configurable via Web.config, include Windows authentication leveraging IIS's Negotiate//Kerberos mechanisms and forms authentication for custom credential storage, ensuring secure user sessions within the IIS environment. Unlike ASP.NET Core's lightweight server, the Framework's components are tightly coupled to IIS for Windows-specific hosting.

ASP.NET Core Modular Design

ASP.NET Core introduces a modular foundation built on the .NET runtime, where core functionality is delivered through lightweight packages rather than a monolithic installation. This design enables developers to include only the necessary components, such as MVC or Pages, via methods like AddControllersWithViews() or AddRazorPages(), resulting in smaller application footprints and improved performance. By decoupling features into packages, ASP.NET Core supports cross-platform development and facilitates easier updates without requiring a full reinstall. Central to this modularity is the , a customizable chain of components that processes incoming HTTP requests and outgoing responses in a sequential manner. Each middleware handles specific tasks, such as via UseLogging(), with UseAuthentication(), or through UseRouting(), allowing developers to compose the pipeline in the Program.cs file using extension methods like app.Use(). This pipeline operates on the HttpContext object, enabling flexible, ordered execution that can be tailored to application needs without tight to the underlying . The modular nature of middleware promotes reusability and , contrasting with the more rigid processing in earlier frameworks. ASP.NET Core includes a built-in dependency injection (DI) container that manages object creation and lifetimes, integrated directly into the framework via the IServiceCollection interface. Services are registered during application startup using methods like services.AddSingleton(), services.AddScoped(), or services.AddTransient(), which define how instances are shared—singleton for application-wide single instances, scoped for per-request lifecycles, and transient for new instances per resolution. This DI system supports , allowing components to request dependencies through constructors, enhancing testability and modularity by avoiding hardcoded dependencies. For example, database contexts can be registered with services.AddDbContext<MyContext>() to inject configuration-aware services automatically. Configuration in ASP.NET Core is handled through a provider-based system that prioritizes JSON files like appsettings.json, with support for environment-specific overrides such as appsettings.Development.json. The IConfiguration interface aggregates sources including environment variables and command-line arguments, enabling seamless adaptation across deployment scenarios without recompilation. This approach separates configuration from code, reinforcing the modular design by allowing runtime adjustments that align with the framework's independence from operating system specifics. Hosting is abstracted via the IHost or WebApplication models, which decouple the application from platform dependencies, supporting diverse environments through configurable builders.

Programming Models

Web Forms and Post-Back Model

ASP.NET Web Forms provides an event-driven, stateful programming model within the ASP.NET Framework, enabling developers to create dynamic web pages using a rich set of server controls and a post-back mechanism for handling user interactions. This model abstracts much of the underlying HTTP protocol, allowing for rapid application development similar to desktop programming paradigms. Developers can utilize drag-and-drop functionality in Visual Studio to place server controls on pages, which are then processed on the server to generate HTML output sent to the client. Central to this model are server controls, such as the and TextBox, which encapsulate both markup and behavior. These controls render as standard elements in the browser but maintain server-side logic for events and state. For instance, a control generates an <input type="submit"> element that, when clicked, initiates a post-back to the server, while a TextBox renders as an <input type="text"> for user input. The framework automatically handles the conversion between these controls and their HTML representations, simplifying the creation of interactive user interfaces.) To maintain state across the inherently stateless HTTP requests, Web Forms employs View State, a mechanism that serializes the properties of pages and controls into a base64-encoded string stored in a hidden form field named __VIEWSTATE. This data is automatically restored on subsequent post-backs, preserving values like user-entered text in a TextBox or the selected index in a without requiring manual intervention. View State is enabled by default for all server controls but can be disabled selectively to optimize , though doing so requires alternative for affected elements. The post-back mechanism forms the core of user interaction in Web Forms, where client-side actions like button clicks or form submissions send the entire page (or portions thereof) back to the server for processing. Synchronous post-backs refresh the full page, triggering server-side events such as Button.Click or page-level Load. For asynchronous post-backs, the UpdatePanel control enables partial page updates by wrapping sections of the page, reducing the data transferred and avoiding full reloads while still invoking the server event model. This approach supports scenarios like updating a grid without disrupting the entire layout. Page processing in Web Forms follows a well-defined lifecycle of events, ensuring consistent handling of initialization, state restoration, event execution, and rendering, particularly during post-backs. The sequence begins with the Init event, where controls are initialized and any master pages or themes are applied, but View State properties are not yet loaded. Next, the Load event restores control properties from View State and control state, allowing access to persisted values. If the request is a post-back, control-specific event handlers (e.g., Button.Click) are then invoked, followed by validation if applicable. The PreRender event provides the final opportunity for modifications before View State is serialized and saved. Finally, the Unload event handles cleanup tasks, such as closing database connections, after the response has been generated but before the page is discarded. This structured lifecycle facilitates predictable behavior and debugging in stateful applications. Web Forms excels in use cases requiring rapid development of data-driven user interfaces, such as enterprise applications with forms, grids, and validation logic, where the control library and event model accelerate prototyping and maintenance. However, the heavy reliance on View State and full or partial post-backs can lead to larger page payloads, potentially impacting load times and complicating optimization due to dynamic content generation. Additionally, the server-centric approach may hinder native mobile responsiveness, as post-backs do not align seamlessly with touch-based interactions or varying screen sizes without additional CSS and adaptations.

MVC, Razor Pages, and API Development

ASP.NET Core MVC implements the Model-View-Controller (MVC) design pattern, which promotes by dividing application logic into three interconnected components: the model for and business rules, the for rendering the , and the controller for handling user input and coordinating responses. This separation facilitates testable code, as controllers can be unit tested independently without relying on views or full HTTP contexts, enabling developers to mock dependencies and verify behavior in isolation. Controllers are classes that inherit from Controller or ControllerBase, processing incoming HTTP requests, interacting with models, and selecting appropriate views or returning directly. Views in MVC utilize templating, a syntax that embeds C# code within markup to generate dynamic content, such as declaring a model with @model IEnumerable<Product> or iterating over data with @foreach (var item in Model) { <p>@item.Name</p> }. syntax supports conditional rendering, partial s for reusable UI components, and Tag Helpers for server-side attributes that produce cleaner , like <input asp-for="Email" /> for model-bound form inputs. This approach ensures s remain focused on presentation while leveraging strongly typed models for and IntelliSense support in development tools. Razor Pages, introduced in ASP.NET Core 2.0, offer a page-focused that simplifies development for page-centric applications, particularly those involving CRUD operations, by combining the handler logic and markup within a single .cshtml file or its associated code-behind. Each Page consists of a .cshtml file containing with embedded syntax and a corresponding PageModel class (in .cshtml.cs) that defines properties for data binding and handler methods like OnGetAsync() for retrieving data on page load or OnPostAsync() for form submissions. The @page directive at the top of the .cshtml file registers the page as an endpoint, enabling convention-based routing where the file name determines the , such as Pages/Index.cshtml mapping to "/". This model reduces boilerplate compared to traditional MVC by colocating related code, making it easier to maintain small-scale web apps without separate controllers for each page; for instance, a handler might bind form data automatically and redirect after processing, as in public async Task<IActionResult> OnPostAsync(Product product) { if (ModelState.IsValid) { await _context.SaveChangesAsync(); return RedirectToPage("./Index"); } return Page(); }. Razor Pages support model binding, validation with attributes like [Required], and for services, aligning with ASP.NET Core's modular design while maintaining stateless, HTTP-compliant behavior. Web API development in ASP.NET Core centers on building RESTful services that expose endpoints for data operations, typically using controllers derived from ControllerBase to handle HTTP methods without view rendering. Attribute routing simplifies mapping with attributes like [Route("api/[controller]")] on the controller class and [HttpGet], [HttpPost] on actions, allowing patterns such as GET /api/products for listing items or POST /api/products for creation, where the controller name (e.g., ProductsController) fills the placeholder. The [ApiController] attribute enables API-specific conventions, including automatic model validation that returns 400 Bad Request for invalid inputs and inference of response types. JSON serialization and deserialization are handled by System.Text.Json, the default formatter in , which converts objects to and from streams efficiently, supporting features like case-insensitive property matching and polymorphic via options configuration. For example, an might return return Ok(new { Id = 1, Name = "Product" }); to produce output, or use CreatedAtAction(nameof(GetProduct), new { id = product.Id }, product); for 201 Created responses with location headers, ensuring adherence to principles for scalable, stateless APIs. Blazor integrates with ASP.NET Core to enable interactive web UIs using C# and .NET components instead of JavaScript. As of .NET 8 and continuing in .NET 9, Blazor primarily uses a unified model in Blazor Web Apps with render modes that determine interactivity and hosting: static server-side rendering for non-interactive content, Interactive Server for server-side rendering with real-time updates via (similar to legacy Blazor Server), Interactive WebAssembly for client-side execution in the browser through , and Interactive Auto which starts with server rendering and switches to WebAssembly. Legacy Blazor Server and standalone Blazor WebAssembly apps remain supported for existing projects. In Interactive Server mode, Razor components (.razor files) render on the server, with UI events triggering diffs sent over for efficient updates, suitable for low-latency intranet apps. Blazor WebAssembly downloads the .NET runtime to the client, allowing full offline capability and direct API calls, while sharing Razor syntax for component markup like @page "/counter" <h1>Counter</h1> <p>Current count: @currentCount</p> <button @onclick="IncrementCount">Click me</button> @code { private int currentCount = 0; private void IncrementCount() { currentCount++; } }. This integration leverages ASP.NET Core's routing and middleware pipeline for hosting Blazor apps alongside MVC or Razor Pages endpoints.

Hosting and Deployment

IIS Integration and Pipeline

ASP.NET Framework applications are hosted on Internet Information Services (IIS) in Windows environments through the use of Internet Server Application Programming Interface (ISAPI) extensions and filters, which enable the server to route requests to the appropriate ASP.NET handler based on file extensions. For instance, requests for .aspx files are mapped to aspnet_isapi.dll, the core ISAPI extension that bridges IIS and the ASP.NET runtime, allowing the framework to process dynamic content.) This model, prominent in IIS 6.0 and earlier, operates in classic mode, where ASP.NET maintains a separate request pipeline from IIS's native pipeline, limiting interoperability between native ISAPI components and managed ASP.NET modules.) The introduction of integrated pipeline mode in IIS 7.0, released in 2008, marked a significant evolution by unifying the IIS native with the ASP.NET managed into a single, cohesive request-processing architecture. In this mode, ASP.NET modules can execute at any stage of the request lifecycle alongside native IIS modules, enabling uniform processing of all requests—regardless of handler—for shared features such as , , and caching. This allows pre-conditioned handler mappings to automatically select the appropriate ASP.NET version and runtime, directing requests to managed handlers instead of relying solely on ISAPI in classic mode. The ASP.NET request pipeline in integrated mode progresses through a series of well-defined events, starting with BeginRequest and concluding with EndRequest, during which modules and handlers perform specific tasks. Modules, such as the UrlRoutingModule, intervene at stages like PostResolveRequestCache to handle URL routing, while handlers like PageHandlerFactory are invoked after the PostMapRequestHandler stage to process specific content types, such as rendering ASPX pages.) Key intermediate events include AuthenticateRequest for user identity verification and AuthorizeRequest for access checks, ensuring comprehensive request handling across the pipeline. This staged approach provides extensibility, as developers can register custom modules and handlers to hook into these events for tailored processing.) Configuration of the IIS integration occurs primarily through the Web.config file, where the <system.webServer> section defines IIS-specific elements like handler mappings and module registrations. For example, handlers are added via the element to map verb-path combinations to managed assemblies, overriding or supplementing ISAPI mappings in integrated mode. Modules are similarly registered in the section to participate in events, allowing fine-grained control over request flow without altering global IIS settings.) This configuration model ensures that ASP.NET applications can leverage IIS's robustness while maintaining framework-specific customizations.

Cross-Platform Hosting in ASP.NET Core

ASP.NET Core introduces cross-platform hosting capabilities, allowing applications to run on Windows, , and macOS without dependency on (IIS). This flexibility is achieved through the web server, which serves as the default HTTP server and supports self-hosting scenarios. Unlike the original ASP.NET Framework, which was tightly coupled to Windows and IIS, ASP.NET Core's enables deployment in diverse environments, including platforms and containers. Kestrel is a , high-performance, cross-platform implemented in managed code, capable of handling HTTP/1.1, , and protocols. It is included by default in projects and can be configured programmatically to bind to specific ports, enable , and set limits such as maximum request body size or concurrent connections. For instance, developers can customize Kestrel options in the Program.cs file using the UseKestrel method on the host builder, allowing fine-tuned control over listening endpoints and security settings. This configuration ensures compatibility across operating systems, with Kestrel leveraging platform-specific networking APIs for optimal performance on and macOS. The hosting environment in ASP.NET Core is typically initialized in Program.cs using the modern minimal hosting model with WebApplication.CreateBuilder (recommended since .NET 6 in 2021), which sets up a cross-platform web host with built-in for , providers, logging, and . This approach automatically detects the runtime environment and configures the application to run seamlessly on Windows, , or macOS, including content root and web root paths adjusted for the host OS, while reducing by integrating service registration and directly in Program.cs. The older WebHost.CreateDefaultBuilder method remains available for but is legacy. An example setup might look like this:
csharp
var builder = WebApplication.CreateBuilder(args);

// Add services to the container.
builder.Services.AddControllersWithViews();

var app = builder.Build();

// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
    app.UseExceptionHandler("/Error");
    app.UseHsts();
}

app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();

app.MapControllerRoute(
    name: "default",
    pattern: "{controller=Home}/{action=Index}/{id?}");

app.Run();
This approach abstracts away OS-specific details, enabling developers to build once and deploy across platforms without code changes. In production environments, is rarely exposed directly to the due to its focus on core request ; instead, it integrates with reverse servers like or for enhanced security, load balancing, and static file serving. These proxies forward requests to Kestrel while preserving client information, such as the real , through the ForwardedHeaders in the application's . Configuration involves enabling the middleware early in the request pipeline and setting trusted proxy networks to prevent spoofing. For example, Nginx can be set up to proxy requests to Kestrel on a local port, ensuring robust handling of termination and traffic routing on Linux-based servers. Deployment options for cross-platform hosting emphasize containerization and cloud services. Docker containers package applications with their dependencies, allowing consistent execution on any Docker-supported host, including servers or clusters; official .NET Docker images facilitate multi-stage builds for efficient runtime images. App Service provides managed hosting for apps on both Windows and plans, supporting automatic and integration with via built-in reverse proxy capabilities. In hybrid scenarios, IIS can act as a on Windows, forwarding requests to a self-hosted instance while leveraging IIS for URL rewriting and authentication. These options enable scalable, platform-agnostic deployments without altering the core application logic.

Versions and Lifecycle

ASP.NET Framework Releases

The ASP.NET Framework, part of the .NET Framework, has evolved through several versions since its initial release, each introducing enhancements to capabilities, performance, and integration with emerging technologies. The original ASP.NET was tightly coupled with the Windows ecosystem and (IIS), focusing on server-side rendering and for dynamic applications. Releases were tied to .NET Framework versions, with key innovations in controls, , and asynchronous processing to support enterprise-scale apps. The version history spans from 1.0 in 2002 to 4.8 in 2019, with a minor update in 4.8.1 in 2022. Early versions emphasized foundational web forms and postback models, while later ones added support, improved rendering, and async patterns. Mainstream support for most versions ended between 2009 and 2022, but extended security updates continue for select versions like 3.5 and 4.8, reflecting its ongoing use in legacy systems. Microsoft provides paths for migration to for modern applications, though the Framework persists in many enterprise environments to its stability and backward compatibility.
VersionRelease DateKey ASP.NET FeaturesEnd of Support
1.0February 13, 2002Introduced Web Forms for event-driven programming, server controls, data binding, and mobile controls; built on CLR 1.0 for basic web application development.Ended January 13, 2009 (extended).
1.1April 30, 2003Enhanced performance with better mobile support, themes for consistent styling, precompilation for faster deployment, and improved security via built-in cryptography; supported side-by-side execution with 1.0.Ended July 14, 2009 (extended).
2.0November 7, 2005Added master pages for layout consistency, membership and role providers for authentication, personalization services, new controls like GridView and DetailsView, and client callbacks for partial updates; integrated with CLR 2.0 for generics and improved scalability.Ended April 12, 2011 (mainstream); extended support ended April 10, 2013.
3.0November 6, 2006Introduced Windows Communication Foundation (WCF) and Windows Workflow Foundation (WF) integration for service-oriented apps, with ASP.NET hosting support; no major ASP.NET-specific changes but enhanced overall framework for web services.Ended July 12, 2011 (mainstream); extended support ended April 10, 2013.
3.5November 19, 2007Built-in AJAX controls and extensions for asynchronous updates without full postbacks, LINQ integration for data querying, and RESTful services via WCF; included AJAX Control Toolkit for richer client interactions.Mainstream ended January 13, 2015; extended support ends January 9, 2029 (for 3.5 SP1).
4.0April 12, 2010Improved HTML rendering for cleaner markup, URL routing for SEO-friendly paths, permanent redirects, client ID mode control to avoid naming conflicts, and enhanced ViewState management; supported MVC 3 with Razor syntax.Ended January 12, 2016 (all support).
4.5August 15, 2012Async support using Task-based patterns for better scalability in I/O-bound operations, bundling and minification for optimized resource delivery, model binding enhancements, and lazy request validation to handle unvalidated input selectively.Ended January 12, 2016 (all support).
4.5.1October 17, 2013Added One ASP.NET for unified configuration across Web Forms, MVC, and Web API; improved Bootstrap integration, new membership system with OWIN support, and better mobile responsiveness.Ended January 12, 2016 (all support).
4.5.2May 5, 2014Enhanced async logging and tracing, per-core locking for better multi-threading, and improved support for cloud environments; minor ASP.NET updates focused on performance tuning.Ended April 26, 2022 (all support).
4.6July 15, 2015HTTP/2 protocol support for faster web performance, improved cryptography with TLS 1.1/1.2 defaults, and Roslyn compiler integration for better editing; ASP.NET benefited from enhanced JIT compilation.Ended April 26, 2022 (all support).
4.6.1November 18, 2015Added support for new TLS versions, improved debugging, and algebraic data types in some libraries; ASP.NET updates included better JSON handling and authentication middleware.Ended April 26, 2022 (all support).
4.6.2August 2, 2016Introduced child process debugging, better high-DPI support, and SQL Server 2016 compatibility; ASP.NET saw enhancements in cross-device rendering.Active until January 12, 2027 (extended).
4.7April 5, 2017Improved TLS 1.3 support, better WPF accessibility, and .NET Standard 2.0 compatibility; ASP.NET features focused on security hardening and performance.Active (support aligned with Windows OS lifecycle; no announced end date as of November 2025).
4.7.1October 17, 2017Enhanced support for OpenSSH, better ARM64 compatibility, and improved serialization; minor ASP.NET updates for authentication flows.Active (support aligned with Windows OS lifecycle; no announced end date as of November 2025).
4.7.2April 30, 2018Added support for new cryptographic algorithms, better Windows 10 integration, and accessibility improvements; ASP.NET benefited from updated hosting models.Active (support aligned with Windows OS lifecycle; no announced end date as of November 2025).
4.8April 18, 2019Focused on reliability with fixes for WPF and Windows Forms interop, improved High-DPI support, and accessibility enhancements; ASP.NET updates included better compatibility for legacy web apps without major new features.Active (support aligned with Windows OS lifecycle; no announced end date as of November 2025).
4.8.1August 9, 2022Minor update with security fixes, support for newer TLS protocols, and ARM64 enhancements; no significant new ASP.NET features, emphasizing maintenance for existing apps.Active (support aligned with Windows OS lifecycle; no announced end date as of November 2025).
As of November 2025, .NET Framework 4.8/4.8.1 and earlier supported versions remain recommended for ongoing ASP.NET development in Windows environments where cross-platform is not required, with security updates delivered via and support tied to the Windows OS lifecycle. For legacy apps on unsupported versions, Microsoft advises upgrading in-place to 4.8/4.8.1 or migrating to to access cross-platform capabilities and .

ASP.NET Core Releases and Support

ASP.NET Core, as an integral part of the .NET platform, follows the annual release cadence established for .NET starting from version , with earlier .NET Core versions released on a similar schedule. The initial release, 1.0, arrived in June 2016 alongside .NET Core 1.0, introducing a modular, cross-platform for . Subsequent versions built incrementally: 2.0 in August 2017, 2.1 (LTS) in May 2018, and 2.2 in December 2018; then 3.0 in September 2019 and 3.1 (LTS) in December 2019. This progression continued with 5.0 in November 2020, 6.0 (LTS) in November 2021, 7.0 in November 2022, 8.0 (LTS) in November 2023, and 9.0 in November 2024. Microsoft provides two support tiers for .NET releases, including ASP.NET Core: Long Term Support (LTS) versions receive three years of support, while Standard Term Support (STS) versions receive 18 months (or extended for alignment in some cases), with security updates and bug fixes during that period. For instance, .NET 8 LTS, which includes 8.0, is supported until November 10, 2026. .NET 9, an STS release incorporating 9.0, has support until November 10, 2026, aligning with the end of .NET 8 support to facilitate smoother transitions for developers. As of 2025, ASP.NET Core 9.0 introduces enhancements focused on performance, security, and developer productivity, including expanded Native AOT (Ahead-of-Time) compilation support for minimal APIs and Razor Pages, which reduces startup times and memory usage in cloud-native scenarios. Improved monitoring tools, such as opt-out HTTP metrics for specific endpoints, enable better memory analysis and tracing without overhead in high-traffic applications. Additionally, new AI integration primitives, like extensions to TensorPrimitives for efficient math operations and interop with libraries such as ML.NET and ONNX Runtime, simplify embedding AI capabilities into web applications. Upgrading between versions often involves addressing breaking changes to ensure compatibility, with providing detailed guides. A notable example is the shift to endpoint in 3.0, which replaced the previous middleware and required updates to route and in MVC applications for better and extensibility. Subsequent upgrades, such as from 7.0 to 8.0, emphasize minimal disruptions through backward compatibility but may require adjustments for new defaults like enhanced .
VersionRelease DateSupport TypeEnd of Support
1.0June 2016June 2019
2.0August 2017October 2018
2.1May 2018LTSAugust 2021
2.2December 2018December 2019
3.0September 2019March 2020
3.1December 2019LTSDecember 2022
5.0November 2020May 2022
6.0November 2021LTSNovember 2024
7.0November 2022May 2024
8.0November 2023LTSNovember 2026
9.0November 2024November 2026

Ecosystem and Extensions

Third-Party Frameworks and Tools

The ASP.NET ecosystem is enriched by a variety of third-party frameworks and tools developed by the community and commercial entities, which extend core functionalities such as , development, , data mapping, job processing, logging, and . These extensions leverage for seamless integration, allowing developers to build scalable applications without reinventing common patterns. By building atop ASP.NET's modular architecture, these tools enhance productivity and performance in diverse scenarios, from lightweight services to enterprise-grade systems. Among popular frameworks, ServiceStack offers high-performance API development with end-to-end typed integrations, supporting RESTful services and message-based while optimizing for speed in web, mobile, and desktop applications. Orchard Core serves as a modular, multi-tenant (CMS) built specifically for , enabling the creation of extensible, content-driven web applications with features like theming and localization. Key tools include AutoMapper, a convention-based for object-to-object mapping that automates the transformation of domain entities to data transfer objects (DTOs), reducing in ASP.NET applications (commercial since April 2025; free alternatives include Mapster and Mapperly). Hangfire facilitates background job processing without requiring Windows Services or separate processes, using persistent storage to manage recurring, delayed, or queued tasks in .NET and .NET Core setups. Serilog delivers structured logging with fully-formed events, integrating easily into ASP.NET pipelines to output diagnostics to files, consoles, or other sinks for better . Integration examples highlight how these tools complement ASP.NET's built-in capabilities; for instance, Core acts as the primary object-relational mapper (), utilizing DbContext for entity tracking and migrations to evolve database schemas declaratively within projects. Authentication is commonly handled via IdentityServer, an Connect and 2.0 framework that secures applications by managing user sessions, tokens, and identity providers. The growth of this ecosystem is propelled by , Microsoft's , which hosts over millions of packages and enables extensions like Swashbuckle for generating interactive OpenAPI (Swagger) documentation directly from API controllers, streamlining API exploration and testing.

Alternative Implementations

The Mono project, an open-source implementation of the .NET Framework initiated by in 2004 and later backed by , provided cross-platform support for subsets of ASP.NET technologies, enabling deployment of ASP.NET Web Forms and MVC applications on and macOS environments. This implementation allowed developers to run ASP.NET code outside of Windows without relying on Microsoft's proprietary runtime, leveraging the XSP and Mod Mono for integration. Following Microsoft's acquisition of in 2016, stewardship of Mono shifted toward integration with emerging .NET technologies, though active development of ASP.NET-specific features waned as focus moved to .NET Core; the project's last major release occurred in 2019, with subsequent patches emphasizing maintenance rather than expansion of web framework support. In the evolution from .NET Core to modern unified .NET, community-driven ports like the extend hybrid applications to additional platforms beyond official offerings. , an open-source framework, enables components—typically rendered via or server-side—to integrate with native UI renderers, supporting hybrid apps that combine web-like development with native performance on , , desktop, and embedded systems. For instance, Uno's renderer allows apps to run in browsers while its Skia-based engine ports them to non-web targets, facilitating single-codebase deployment for cross-platform scenarios without full reliance on .NET MAUI. This community effort addresses gaps in official hybrid tooling, particularly for and embedded devices, by providing pixel-perfect rendering and API compatibility layers. Cloud-specific implementations offer serverless alternatives for , decoupling runtime execution from traditional hosting models. Azure Functions, Microsoft's serverless compute service, natively supports applications through HTTP triggers and durable functions, allowing developers to build event-driven APIs and microservices that scale automatically without managing infrastructure. Similarly, integrates with via the Amazon.Lambda.AspNetCoreServer hosting package, enabling existing web APIs to run as serverless functions triggered by API Gateway or other AWS events, with support for .NET 8 and container images for custom deployments. These integrations preserve 's middleware pipeline and while abstracting server provisioning, making them suitable for high-throughput, cost-optimized workloads. Compatibility layers like .NET Standard facilitate shared codebases across diverse ASP.NET implementations, bridging the gap between the legacy .NET Framework and modular .NET Core runtimes. Defined as a set of standardized APIs common to multiple .NET platforms, .NET Standard 2.0 ensures that libraries targeting it—such as those for controllers or —can be consumed by both Framework-based and Core-based applications without recompilation. This specification, supported by .NET Framework 4.6.1 and all versions of .NET Core/.NET 5+, promotes interoperability in mixed environments, allowing alternative runtimes to leverage unified packages via while avoiding platform-specific divergences.

References

  1. [1]
    What is ASP.NET?
    ASP.NET is an open source web framework, created by Microsoft, for building modern web apps and services that run on macOS, Linux, Windows, and Docker.
  2. [2]
    ASP.NET documentation - Microsoft Learn
    ASP.NET Core is used to create fast, secure, cross-platform, cloud-based web apps and services, including interactive, MVC, and real-time apps.Overview of ASP.NET Core · Overview of ASP.NET Core MVC · APIs overview · IIS
  3. [3]
    ASP.NET overview | Microsoft Learn
    Sep 30, 2022 · ASP.NET is a free web framework for building websites and web applications using HTML, CSS, and JavaScript, with three frameworks: Web Forms, ...ASP.NET tutorials · ASP.NET 4.x Web API · Net MVC · Web Forms
  4. [4]
    Overview of ASP.NET Core | Microsoft Learn
    Jul 30, 2025 · ASP.NET Core is a cross-platform, high-performance, open-source framework for building modern web apps using .NET. The framework is built for ...NET vs. .NET Framework for... · Core MVC · Incremental Migration
  5. [5]
    ASP.NET Core fundamentals overview - Microsoft Learn
    Jul 30, 2025 · Learn the fundamental concepts for building ASP.NET Core apps, including dependency injection (DI), configuration, middleware, and more.ASP.NET Core Middleware · App startup · Dependency injection (DI)
  6. [6]
    ASP.NET Core, an open-source web development framework
    ASP.NET Core is a free, open-source framework for building web apps and services with .NET and C#, extending the .NET platform for web development.ASP · Web Apps · MVC Pattern · ASP.NET Hosting
  7. [7]
    What's new in ASP.NET Core in .NET 9 | Microsoft Learn
    Nov 19, 2024 · This article highlights the most significant changes in ASP.NET Core in .NET 9 with links to relevant documentation.Missing: history | Show results with:history<|control11|><|separator|>
  8. [8]
    Overview of ASP.NET Core MVC - Microsoft Learn
    Jun 17, 2024 · ASP.NET Core MVC is a lightweight, open-source framework for building web apps and APIs using the MVC pattern, optimized for ASP.NET Core.
  9. [9]
    PDC 2000 - Microsoft Learn
    PDC 2000 took place on July 11–14, 2000 at the Orange County Convention Center in Orlando, Florida. .NET Framework and Visual Studio.NET were announced.
  10. [10]
    Microsoft Announces Groundswell of Support for .NET Platform
    Jul 11, 2000 · The Microsoft .NET Platform, announced June 22 at Forum 2000, is Microsoft's initiative for creating the next generation of software, which ...
  11. [11]
    What's the early history of the .Net framework? - Stack Overflow
    Jul 5, 2009 · Microsoft started development on the .NET Framework in the late 1990s originally under the name of Next Generation Windows Services (NGWS).
  12. [12]
    Announcing ASP.NET Core 1.0 - Microsoft Developer Blogs
    Jun 27, 2016 · Today we are excited to announce the release of ASP.NET Core 1.0! ... From the beginning of ASP.NET in 2002 the .NET server-side frameworks ...
  13. [13]
    ASP.Net? What is this? - Microsoft Q&A
    Oct 20, 2025 · ASP.NET was created by Microsoft around 2002 as the successor to classic ASP (“Active Server Pages”). It's built into Windows and IIS ...
  14. [14]
    ASP.NET server controls overview - Microsoft Learn
    Jan 24, 2022 · This article introduces ASP.NET server controls, such as HTML server controls, Web server controls, List controls etc.
  15. [15]
    What's new in .NET Framework - Microsoft Learn
    Jan 6, 2023 · See what's new in various versions of .NET Framework. Read a summary of key new features and improvements in each version.Missing: history | Show results with:history
  16. [16]
    Master Pages and ASP.NET AJAX (C#) - Microsoft Learn
    Jul 21, 2022 · This tutorial shows how to add the ScriptManager control to the master page. It also looks at how to use the ScriptManagerProxy control to register custom ...
  17. [17]
    The history of C# | Microsoft Learn
    This article provides a history of each major release of the C# language. The C# team is continuing to innovate and add new features.What's new in C# 11 · Relationships between... · Local functions
  18. [18]
    Introduction to LINQ (Visual Basic) - Microsoft Learn
    Sep 15, 2021 · LINQ makes a query a first-class language construct in Visual Basic. You write queries against strongly typed collections of objects by using language keywords ...
  19. [19]
    Microsoft .NET Framework - Microsoft Lifecycle
    Releases ;.NET Framework 4.0, Apr 12, 2010, Jan 12, 2016 ;.NET Framework 3.5 Service Pack 1, Nov 19, 2007, Jan 9, 2029 ;.NET Framework 3.0, Nov 21, 2006, Jul 12 ...
  20. [20]
    Overview: ASP.NET 4 and Visual Studio 2010 Web Development
    Jun 30, 2022 · Routing lets you configure an application to accept request URLs that do not map to physical files. Instead, you can use routing to define URLs ...
  21. [21]
    Download ASP.NET MVC 1.0 from Official Microsoft Download Center
    Jul 15, 2024 · Version: 1.0. Date Published: 7/15/2024. File Name: ASP.NET MVC - 1.0 Release Notes.doc. AspNetMvc1.0.Ms-PL.source.zip. AspNetMVC1.msi. File ...
  22. [22]
    Microsoft .NET and .NET Core - Microsoft Lifecycle
    Releases ;.NET Core 2.1 (LTS), May 30, 2018, Aug 21, 2021 ;.NET Core 2.0, Aug 14, 2017, Oct 1, 2018 ;.NET Core 1.1, Nov 16, 2016, Jun 27, 2019 ;.NET Core 1.0 ...
  23. [23]
    Common Language Runtime (CLR) overview - .NET - Microsoft Learn
    Get started with common language runtime (CLR), .NET's run-time environment. The CLR runs code and provides services to make the development process easier.
  24. [24]
    Managed Execution Process - .NET - Microsoft Learn
    Apr 20, 2024 · During execution, managed code receives services such as garbage collection, security, interoperability with unmanaged code, cross-language ...Compile To Cil · Compile Cil To Native Code · Code Verification
  25. [25]
    HttpRuntime Class (System.Web) - Microsoft Learn
    The HttpRuntime class provides ASP.NET run-time services and is used at the beginning of the ASP.NET pipeline model.Definition · Examples
  26. [26]
    Create the Web.config file for an ASP.NET application
    Feb 11, 2025 · This article describes how to create the Web.config file that's used to control the behavior of individual ASP.NET applications.Summary · Hierarchy of .config files
  27. [27]
    ASP.NET Precompilation Overview - Microsoft Learn
    ASP.NET can precompile a Web site before it is made available to users. This provides many advantages, which include faster response time, error checking, ...Background · Default Compilation · File Handling During Asp.Net...
  28. [28]
    ASP.NET Page Life Cycle Overview - Microsoft Learn
    Oct 21, 2014 · When an ASP.NET page runs, the page goes through a life cycle in which it performs a series of processing steps.
  29. [29]
    GridView Class (System.Web.UI.WebControls) | Microsoft Learn
    ASP.NET provides an input request validation feature to block script and HTML in user input. Validation server controls are also provided to assess user input.GridView.AllowPaging Property · GridView.Columns Property
  30. [30]
    Validating User Input in ASP.NET Web Pages - Microsoft Learn
    Oct 21, 2014 · You can add input validation to ASP.NET Web pages using validation controls. Validation controls provide an easy-to-use mechanism for all common types of ...
  31. [31]
    ASP.NET Integration with IIS 7 - Microsoft Learn
    Mar 15, 2022 · For more information about how to move an application to the Classic ASP.NET mode, see Changing ASP.NET Modes for an Application. Disabling the ...Missing: curve | Show results with:curve
  32. [32]
    ASP.NET security overview - Microsoft Learn
    Jan 25, 2022 · ASP.NET provides four authentication providers: Forms authentication; Windows authentication; Passport authentication; Default authentication ...Authentication · Authorization · Role-Based Security
  33. [33]
  34. [34]
    Dependency injection in ASP.NET Core | Microsoft Learn
    Sep 18, 2024 · ASP.NET Core supports the dependency injection (DI) software design pattern, which is a technique for achieving Inversion of Control (IoC) between classes and ...NET · ASP.NET Core Blazor... · Dependency injection into... · Native AOT journey
  35. [35]
    Dependency injection - .NET - Microsoft Learn
    Learn how to use dependency injection within your .NET apps. Discover how to registration services, define service lifetimes, and express dependencies in ...Use dependency injection · Dependency injection guidelines · Microsoft Ignite
  36. [36]
  37. [37]
    ASP.NET: Web Forms Let You Drag And Drop Your Way To ...
    This article describes the Web Forms programming model, how it fits with ASP.NET, and introduces DataGrid, TextBox, and other classes in the .NET Framework ...
  38. [38]
    What is Web Forms | Microsoft Learn
    Jun 15, 2023 · This topic provides an overview of ASP.NET Web forms, which is one of the four programming models that can be used to create ASP.
  39. [39]
    ASP.NET View State Overview
    ### Summary of View State in ASP.NET Web Forms
  40. [40]
    PostBackOptions Class (System.Web.UI) | Microsoft Learn
    The PostBackOptions class allows controls to emit client-side script that initiates a postback event.
  41. [41]
    ASP.NET Page Life Cycle Overview
    ### ASP.NET Page Life Cycle Events (Post-Back Scenarios)
  42. [42]
    Views in ASP.NET Core MVC - Microsoft Learn
    Jun 17, 2024 · A view is an HTML template with embedded Razor markup. Razor markup is code that interacts with HTML markup to produce a webpage that's sent to the client.How Controllers Specify... · Pass Data To Views · Weakly Typed Data ( Viewdata...
  43. [43]
    Razor syntax reference for ASP.NET Core | Microsoft Learn
    Sep 27, 2024 · Razor is a markup syntax for embedding .NET based code into webpages. The Razor syntax consists of Razor markup, C#, and HTML.Razor class library (RCL) · Layout · Built-in Tag Helpers
  44. [44]
    Razor Pages architecture and concepts in ASP.NET Core
    Aug 27, 2025 · Learn the architecture, concepts, and patterns of Razor Pages in ASP.NET Core for building page-focused web applications.Tutorial · Razor Pages authorization · Razor Pages route and app... · Unit testing
  45. [45]
    Tutorial: Get started with Razor Pages in ASP.NET Core
    Aug 5, 2024 · This is the first tutorial of a series that teaches the basics of building an ASP.NET Core Razor Pages web app.Prerequisites · Create a Razor Pages web app
  46. [46]
    Create web APIs with ASP.NET Core - Microsoft Learn
    Jun 1, 2024 · ASP.NET Core supports creating web APIs using controllers or using minimal APIs. Controllers in a web API are classes that derive from ControllerBase.Tutorial · Format response data in ASP... · Tutorial: Create a minimal API...
  47. [47]
    ASP.NET Core Blazor - Microsoft Learn
    Nov 12, 2024 · Blazor Server provides support for hosting Razor components on the server in an ASP.NET Core app. UI updates are handled over a SignalR ...ASP.NET Core Blazor tutorials · Tooling for ASP.NET Core Blazor
  48. [48]
    ASP.NET Core Blazor hosting models - Microsoft Learn
    Nov 12, 2024 · This article explains Blazor hosting models, primarily focused on Blazor Server and Blazor WebAssembly apps in versions of .NET earlier than .NET 8.
  49. [49]
    ASP.NET: Intercept, Monitor, and Modify Web Requests with HTTP ...
    Oct 22, 2019 · ... mappings you'll see that all the ASP extensions are associated with asp.dll, while all the ASP.NET extensions are handled by aspnet_isapi.dll.Using An Http Filter In Asp... · Rewriting Urls With Asp.Net... · Url Rewriting Using Isapi...
  50. [50]
    How to Take Advantage of the IIS 7.0 Integrated Pipeline
    Jun 14, 2022 · This article examines how the ASP.NET applications can take advantage of the integrated mode in IIS 7.0 and above, and illustrates the following tasks.Prerequisites · Adding Forms Authentication...
  51. [51]
    Instrument and Monitor Your ASP.NET Apps Using WMI and MOM ...
    There are other important stages in the request pipeline: BeginRequest, AuthenticateRequest, AuthorizeRequest, and EndRequest, to name a few. Figure 2 ASP ...
  52. [52]
    Adding Handlers <add> - IIS - Microsoft Learn
    Apr 6, 2022 · How create a handler mapping for an ASP.NET handler in an IIS 7 application running in Integrated mode · Open Internet Information Services (IIS) ...
  53. [53]
    Kestrel web server in ASP.NET Core - Microsoft Learn
    Aug 25, 2025 · Kestrel is a cross-platform web server for ASP.NET Core. Kestrel is the web server that's included and enabled by default in ASP.Configure options for the ASP... · Configure endpoints · Host filtering · HTTP/2
  54. [54]
    Web server implementations in ASP.NET Core - Microsoft Learn
    May 28, 2025 · Kestrel server is the default, cross-platform HTTP server implementation. Kestrel provides the best performance and memory utilization, but it ...
  55. [55]
    Configure endpoints for the ASP.NET Core Kestrel web server
    Mar 5, 2025 · Kestrel endpoints provide the infrastructure for listening to incoming requests and routing them to the appropriate middleware.Missing: cross- | Show results with:cross-
  56. [56]
    Configure options for the ASP.NET Core Kestrel web server
    Aug 25, 2025 · The Kestrel web server has constraint configuration options that are especially useful in Internet-facing deployments.Missing: cross- | Show results with:cross-
  57. [57]
    ASP.NET Core Web Host - Microsoft Learn
    Sep 10, 2024 · The code that calls CreateDefaultBuilder is in a method named CreateWebHostBuilder , which separates it from the code in Main that calls Run on ...Missing: cross- | Show results with:cross-
  58. [58]
    WebHost.CreateDefaultBuilder Method (Microsoft.AspNetCore)
    The `CreateDefaultBuilder` method initializes a `WebHostBuilder` with pre-configured defaults, including Kestrel, configuration, and logging to console.Missing: cross- | Show results with:cross-
  59. [59]
    When to use Kestrel with a reverse proxy - Microsoft Learn
    Feb 6, 2025 · Kestrel can be used by itself or with a reverse proxy server. A reverse proxy server receives HTTP requests from the network and forwards them to Kestrel.Missing: cross- | Show results with:cross-
  60. [60]
    Run an ASP.NET Core app in Docker containers - Microsoft Learn
    Apr 23, 2025 · For this tutorial, you download an ASP.NET Core sample app and run it in Docker containers. The sample works with both Linux and Windows containers.Missing: cross- | Show results with:cross-
  61. [61]
    Quickstart: Deploy an ASP.NET web app - Azure App Service
    Apr 24, 2025 · It provides a highly scalable, self-patching web hosting service. ASP.NET web apps are cross-platform and can be hosted on Linux or Windows.
  62. [62]
    Host ASP.NET Core on Windows with IIS - Microsoft Learn
    Jul 31, 2024 · Learn how to host ASP.NET Core apps on Windows Server Internet Information Services (IIS).IIS modules with ASP.NET Core · Install the .NET Hosting Bundle
  63. [63]
    NET Framework & Windows OS versions - Microsoft Learn
    To determine the installed . NET version, use the following Release DWORD: 460798 (Windows 10 Creators Update) 460805 (all other OS versions)NET Framework 4.8 . · NET Framework 4.7.2 . · NET Framework 4.6.1 .
  64. [64]
    NET Framework official support policy
    Aug 18, 2025 · Support for .NET Framework versions 4.5.2, 4.6, and 4.6.1 ended on April 26, 2022, so security fixes, updates, and technical support for these versions will no ...
  65. [65]
    ASP.NET Side-by-Side Execution of .NET Framework 1.0 and 1.1
    9 may 2022 · Applies to ASP.NET 1.0 and ASP.NET 1.1. In ASP.NET, applications are said to be running side by side when they are installed on the same ...
  66. [66]
    A Look at the New Services, Controls, and Features in ASP.NET 2.0
    ASP.NET 2.0 introduces a client callback manager that permits pages to call back to the server without fully posting back. Callbacks are asynchronous and are ...
  67. [67]
    ASP.NET 3.5 - Microsoft Learn
    Feb 19, 2020 · How to build ASP.NET 3.5 applications, with an emphasis on new features.
  68. [68]
    Extreme ASP.NET: Looking Ahead to ASP.NET 4.0 | Microsoft Learn
    In my last column, I touched on a few of these improvements, like the new classes that make it easy to use the URL routing features now included in the core ...
  69. [69]
    Exploring ASP.NET 4.0—Web Forms and Beyond - Microsoft Learn
    In this article, I'll take a look at what's new and improved in the Web Forms model. In future columns, I'll address the Dynamic Data control platform as a ...Missing: milestones | Show results with:milestones
  70. [70]
    What's New in ASP.NET 4.5 and Visual Studio 2012 | Microsoft Learn
    Feb 29, 2012 · ASP.NET 4.5 introduces two features that make it easy for you to selectively work with unvalidated input: deferred ("lazy") request validation ...
  71. [71]
    ASP.NET 4.5.1 and Visual Studio 2013 - Microsoft Learn
    ASP.NET 4.5.1 and Visual Studio 2013 include a new ASP.NET membership system, a new scaffolding system, support for custom web servers, new project ...
  72. [72]
    What's new in .NET 9 - Microsoft Learn
    Aug 26, 2025 · Learn about the new .NET features introduced in .NET 9 for the runtime, libraries, and SDK. Also find links to what's new in other areas, ...Net 8 · Microsoft Ignite · Breaking changes in .NET 9 · Runtime
  73. [73]
    The official .NET support policy - Microsoft
    The .NET Framework is updated machine-wide automatically by Windows Update. .NET Framework 4.8 is the latest version of .NET Framework and will continue to be ...NET and .NET Core support... · ASP.NET Support · Icy/dotnet-framework · CoreWCF<|control11|><|separator|>
  74. [74]
    Microsoft.Extensions.AI libraries - .NET
    Learn how to use the Microsoft.Extensions.AI libraries to integrate and interact with various AI services in your .NET applications.
  75. [75]
    Breaking changes in .NET Core 3.0 - Microsoft Learn
    ASP.NET Core 1.0 APIs have been replaced by extension methods in Microsoft. ... The ASP.NET Core 3.0 release removed the obsolete MemoryCacheOptions APIs.
  76. [76]
    Migrate from ASP.NET Core 2.2 to 3.0 - Microsoft Learn
    Aug 30, 2024 · Complete list of breaking changes in the ASP.NET Core 3.0 release · Breaking API changes in Antiforgery, CORS, Diagnostics, MVC, and Routing.
  77. [77]
    Compatibility - Mono Project
    The easiest way to describe what Mono currently supports is: Everything in .NET 4.7 except WPF, WWF, and with limited WCF and limited ASP.NET async stack.
  78. [78]
    Mono Project
    Mono is a software platform for cross-platform applications, an open-source .NET implementation, and the first .NET on Android, iOS, and Linux.Download · C# Compiler · The Mono Runtime · DocumentationMissing: ASP. | Show results with:ASP.
  79. [79]
    Mono open source ECMA CLI, C# and .NET implementation. - GitHub
    The last major release of the Mono Project was in July 2019, with minor patch releases since that time. The last patch release was February 2024. We are happy ...
  80. [80]
    FAQ: General - Uno Platform
    Uno Platform applications are written in C# and XAML markup, whereas Blazor applications are written in 'Razor' syntax, a hybrid of HTML/CSS and C#. Uno ...
  81. [81]
    Blazor WebAssembly (client-side) with AOT and SkiaSharp
    Uno Platform is free and Open Source (Apache 2.0) and available on GitHub. We've built a simple sample “File New Project” template with Mixed Interpreter/AOT ...
  82. [82]
    A Todo app using Uno WebAssembly Renderers for Blazor Native
    This is the home of the Uno Platform Todo App sample for Blazor Native running on WebAssembly, based on the original Todo App from the Blazor team.
  83. [83]
    Azure Functions overview | Microsoft Learn
    Mar 25, 2025 · Azure Functions is a serverless solution that allows you to build robust apps while using less code, and with less infrastructure and lower costs.Azure Functions Scenarios · Introduction to Azure Functions · Durable Functions
  84. [84]
    Deploy ASP.NET applications - AWS Lambda
    Lambda.AspNetCoreServer NuGet package. In this section, you learn how to deploy an ASP.NET web API to Lambda using the .NET Lambda CLI tooling.
  85. [85]
    .NET Standard - .NET | Microsoft Learn
    Nov 11, 2024 · Learn about .NET Standard, its versions, and the .NET implementations that support it.<|control11|><|separator|>