Search code examples
asp.nethttphandlerhttpmodule

How many httphandlers and httpmodules we can have in one asp.net application?


I am currently studying HttpHandlers and HttpModules in ASP.Net.

One question that is coming in my mind again and again is.....

How many total HttpHandlers and HttpModules that one application can have?

Is there any max limit for custom handlers and modules?

Can we have more than one custom module for one event?


Solution

  • As far as im aware you can only have one handler per request and as many modules as you like.