I have read about these but still confused what are the uses cases where I will write a http handler and not http module ( and vice versa). A few example of uses cases for each will help
when to write handler or module.. any examples?
1.3k Views Asked by imak At
2
There are 2 best solutions below
0

An HTTP handler is like an ASPX page. A handler is registered in your web.config to respond to a particular URL such as "*.css" or "MyHandler.xyz".
An HTTP module processes all requests. If you need to handle something for all of your requests before they start being processed by their handler, then you want an HTTP module. Security and caching are the main examples for using a module.
HTTP Handlers and HTTP Modules Overview