IIS7 Integrated vs Classic Pipeline - which uses more ASP.NET threads?

前端 未结 2 1845
栀梦
栀梦 2021-02-12 11:10

With integrated pipeline, all requests are passed through ASP.NET, including images, CSS.

Whereas, in classic pipeline, only requests for ASPX pages are by default passe

2条回答
  •  眼角桃花
    2021-02-12 11:37

    I'd say you're right, but I' look at it from another perspective.

    Do you need to process the requests for the non-ASPX pages ? For example, to log them, or to forbid the response if some condition is not met.

    If you need this processing capability, use integrated pipeline. If you don't, use the classic pipeline.

提交回复
热议问题