I am trying to figure out the difference between httphandler and httpmodule.
In the article mentioned below it says
our application needed URL rewriting and HTTPHandlers are a bad solution for that and should never be used for that.
This confuses me.
what does it mean? and it shows how to rewrite a url using httpmodule.
- So what if i used httphandler to rewrite the URL?
- what is it's drawback?
- In which scenario i can make use of httphandler?
- It says httphandler is used to handle MIME types. So the same problem will not occur (in Post back) for this case?
Can anyone share some real time example of when to use httphandler and httpmodule efficiently?