Hearth Portable ASP.NET Web Server A lightweight, high performance, portable web server designed for ASP.NET applications. Jun 28, 2026 ASP.NET Web Forms
Hearth CMS - Welcome The World First CMS Built in Pageless ASP.NET Web Forms Architecture Introducing the world's first CMS built in Pageless ASP.NET Web Forms Architecture Jun 28, 2026 ASP.NET Web Forms
What Is Async? There Is No “Async” Inside Async Open the hood of async/await and you will not find the async. You will find a state machine, a heap object, and one non-blocking call to the operating system — ordinary mechanics, arranged into a pattern. That pattern is what we named “async”. Jun 9, 2026 C#
The C# Async Cliff: When Synchronous Code Is the Right Engineering Choice Synchronous code isn’t legacy. It’s correct sizing, right up until a specific, measurable cliff that most applications never reach. Jun 8, 2026 C#
OpenWebForms – Running ASP.NET Web Forms Cross Platform with Modern .NET on Linux Run classic ASP.NET Web Forms on modern, cross‑platform .NET. No IIS, no ASP.NET Core, no rewrite. Jun 4, 2026 ASP.NET Web Forms
Launching ASP.NET Club Website A home for developers who build with ASP.NET Web Forms. May 18, 2026 ASP.NET Web Forms
Introduction of Asynchronous vs Synchronous Programming in C# A surface-level introduction to asynchronous programming in C# May 1, 2026 C#
Introducing cshttp: A Standalone HTTP Parser for C# A standalone HTTP/1.1 parser and content toolkit for C#. No framework. No server. No dependencies. Just bytes in, structured message out. Apr 29, 2026 ASP.NET Web Forms
The World’s First Source Code Demo for Pageless ASP.NET Web Forms Architecture The very first avaiable demo of Pageless ASP.NET Web Forms Architecture Apr 18, 2026 ASP.NET Web Forms
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. Apr 13, 2026 ASP.NET Web Forms
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. Apr 8, 2026 ASP.NET Web Forms
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. Apr 7, 2026 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. Apr 7, 2026 ASP.NET Web Forms
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. Apr 5, 2026 ASP.NET Web Forms
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# Apr 2, 2026 C#
Migrating from ASP.NET Core to ASP.NET Web Forms What You Actually Gain by Staying with or Shifting to Web Forms Apr 1, 2026 ASP.NET Web Forms
Building a Server-Sent Event (SSE) Web Server from Scratch in C# Web server becomes the active communication initiator with browser. Mar 31, 2026 C#
A Standalone HTTP Request Parser for C# A white paper on a missing piece in the .NET ecosystem Mar 31, 2026 C#
Building a Web Server from Scratch in C# Writing a C# console app that is both a web server and a web application. Mar 30, 2026 C#
How Programs Talk to Another Program – Introduction to C# Socket and Port Communication Between Two Programs, Locally and Network Mar 30, 2026 C#
The Geography of Who Stayed in ASP.NET Web Forms Where are the people who are still using Web Forms? Mar 30, 2026 General
Complete Architecture Reference for Vanilla ASP.NET Web Forms in MD (Markdown) Format A complete architecture reference, guideline and code convention for building modern web applications on Vanilla ASP.NET Web Forms without Server Controls, ViewState, or PostBack. Mar 23, 2026 ASP.NET Web Forms
An Alternate Timeline Where Web Forms Is Not Killed But Enhanced What if the path had been different — not backward, but wider? Mar 23, 2026 General
Documentation: Writing MCP Tools in C# (.NET Framework) for Claude Desktop/Code A reference documentation for building MCP (Model Context Protocol) tool servers in C# 7.3, .NET Framework 4.8, as a Console Application. Mar 13, 2026 C#
Where Did the Young C# Developers Go? A gentle observation about gateways, learning curves, and the future of an ecosystem Mar 13, 2026 General
Building Pagination in Vanilla ASP.NET Web Forms In Vanilla ASP.NET Web Forms, pagination is just string building. Design your HTML, style it with CSS, write one reusable function, and connect it to your database. No magic, no heavy controls. Quick, simple, lightweight. Jan 12, 2026 ASP.NET Web Forms
The Invisible Hand Behind Your Framework On technology choices, and the humans who make them for you. Jan 11, 2026 General
What ASP.NET Web Forms Really is beneath Server Controls The layer that was kept from the sunlight during launch. Jan 10, 2026 ASP.NET Web Forms
Vanilla ASP.NET Web Forms is a Good Platform for Beginners to Learn the Foundation of Web Development Why the Vanilla ASP.NET Web Forms might be the clearest path to understanding how the web actually works. Jan 7, 2026 ASP.NET Web Forms
HTTP Status Codes and the EndResponse Handling in ASP.NET Web Forms Pageless Architecture (WPA) Proper response termination and HTTP status codes in True Pageless ASP.NET Web Forms. Learn the EndResponse pattern, when to use 200 vs 4xx/5xx, and how to handle errors on both server and client sides Jan 6, 2026 ASP.NET Web Forms
HTML Generation Patterns: 10 Approaches for Building Dynamic Web Pages From StringBuilder to Razor, from XSLT to React—a comprehensive overview of how developers generate HTML dynamically, with pros, cons, and use cases for each approach. Jan 5, 2026 ASP.NET Web Forms
Introducing Composer and Assembler Patterns (Engine) for ASP.NET Web Forms Pageless Architecture (WPA) Organize HTML templates and assemble complete pages using the Composer and Assembler pattern (engine) — turning static HTML files into dynamic, maintainable web pages without ASPX. Jan 5, 2026 ASP.NET Web Forms
Pageless ASP.NET Web Forms in Action: A Step-by-Step Demo See how four routes, zero ASPX files, and pure HTTP handling come together in under 100 lines of code Jan 5, 2026 ASP.NET Web Forms
Three Approaches to ASP.NET Web Forms Architecture From GridView to zero ASPX files — A Map for Web Forms Developers Jan 5, 2026 ASP.NET Web Forms
Direct Request Handling in ASP.NET Web Forms — The Pageless Architecture Using the framework as what it really is — an HTTP engine Jan 4, 2026 ASP.NET Web Forms
Pageless Architecture — A Web Forms Framework Without Web Forms (The illustrated overview) WPA explained without the 500 lines of code, presenting the “I Don’t Need to See the Code” Version. The “To CEO” vibe version of presentation. Jan 4, 2026 ASP.NET Web Forms
MySQL Server Installation Management & Backup/Restore in C# + Windows MySQL server manual installation, Windows service management, and C# programmatic backup/restore using mysqldump and mysql.exe command-line tools with proper argument quoting patterns. Jan 4, 2026 MySQL
Part 4.2: Generate PDF Using Puppeteer Sharp in ASP.NET Web Forms Convert HTML to PDF using Puppeteer Sharp in .NET. Covers installation, PdfOptions, async patterns, and complete ASP.NET Web Forms integration with code examples. Jan 3, 2026 ASP.NET Web Forms
Part 4.1: Generate PDF Using Chrome.exe in ASP.NET Web Forms Generate PDFs from HTML using Chrome.exe headless in ASP.NET Web Forms. Two methods: physical files and in-memory with ConcurrentDictionary. Jan 3, 2026 ASP.NET Web Forms
Part 3: Printing Full Dynamic Layout Content (Reports, Data Grids, etc…) Learn how to generate full dynamic printable reports in ASP.NET Web Forms. Unlike semi-dynamic invoices, full dynamic reports are simpler – no footer positioning, no height calculations, just simple row-based pagination. Build daily sales reports, inventory lists, and data grids with clean pagination. Jan 3, 2026 ASP.NET Web Forms
Part 2: Printing Semi Dynamic Layout Content (Invoices, Bills, etc…) In this part, we’ll tackle semi-dynamic layouts — documents that have both fixed header/footer sections AND a variable-length body section that grows based on data. Jan 3, 2026 ASP.NET Web Forms