How to use Dependency Injection with ASP.NET Web Forms

前端 未结 6 1643
一生所求
一生所求 2020-11-27 14:02

I am trying to work out a way to use dependency injection with ASP.NET Web Forms controls.

I have got lots of controls that create repositories directly, and use tho

6条回答
  •  余生分开走
    2020-11-27 14:49

    Autofac supports fairly unobtrusive dependency injection in ASP.NET WebForms. My understanding is it just hooks into the ASP.NET page lifecycle using an http module and does property injection. The only catch is that for controls I don't think this happens until after the Init event.

提交回复
热议问题