I have an asp.net application and have used MVP pattern and created interfaces for all classes to make them testable and apply dependency injection.
I am going to use an IoC container, perhaps Microsoft Unity, to inject the dependencies in a single place.
I've used Spring.NET for a Windows Service application before but for ASP.NET it would be different as we have requests and responses and application life cycle so not sure how to set up it.
Is there any good sample application to demonstrate how to setup and configure an IoC container with ASP.NET?
Many thanks,