Showing results for:

Session Management in Pageless ASP.NET Web Forms (Self-Manage)

ASP.NET Framework's default built-in session management is not available in Pageless Architecture, therefore, we have to self manage it.

ASPX as Design Workbench, DLL as Deliverable: A Pageless ASP.NET Web Forms Development Pattern

Use ASPX pages as your design workbench, then compile your production pages as C# RequestHandlers into the DLL.

Complete Architecture Reference for Pageless ASP.NET Web Forms in MD (Markdown) Format

Complete architecture reference, guideline and code convention for building modern web applications on Pageless ASP.NET Web Forms.

CRUD in Pageless ASP.NET Web Forms Architecture

Create, Read, Update, Delete — with C# string-based rendering, plain HTML forms, and the Fetch API. No GridView, no ViewState, no page lifecycle, no frontend framework.

Session State Access in Pageless ASP.NET Web Forms Architecture (Using Framework Built-in Session Management)

How to access the IIS built-in session state in ASP.NET Web Forms without using .aspx pages, master pages, or the page lifecycle.

C# String-Based HTML Template Rendering in Vanilla and Pageless ASP.NET Web Forms

A technique for rendering full HTML pages entirely in C#, using string interpolation, StringBuilder, and Response.Write, without any .aspx markup files, master pages, or the Web Forms page lifecycle.

Building a WebSocket Web Server from Scratch in C#

Establishes a persistent connection for real-time, two-way communication between the server and browser in C#

Migrating from ASP.NET Core to ASP.NET Web Forms

What You Actually Gain by Staying with or Shifting to Web Forms

Building a Server-Sent Event (SSE) Web Server from Scratch in C#

Web server becomes the active communication initiator with browser.

A Standalone HTTP Request Parser for C#

A white paper on a missing piece in the .NET ecosystem