I have written an .ashx http handler. I also have a custom http handler which I added to the web.config file:
<httpHandlers>
<add verb="*" path="*.aspx" type="AspxHandler"/>
</httpHandlers>
and I want the call to go to my custom http handler before it goes to the ashx http handler.
How can I do that?