0
kicks
Proof of Concept: a simple DI solution for ASP.NET WebForms
Building a simple, reusable Http Module that gives folks DI scoped to the Application, Session, and Request. List of requirements (scaled to just the application level) that looked sort of like this:
Create a DI container for the application
Create a way to get to the container ( we choose an extension method on the Application class)
Allow a way to configure the container
Allow DI to work for pages
Allow DI to work for user controls
Allow DI to work for master pages
Allow DI to work for ASMX web services
Allow the above functionality in a simple and self contained way