i'm starting to develop my first asp.net web application. I've read a lot about the Handlers, but really i can't understand how to map the handler in the web.config.
I've tryed to add this code into "system.web" tag
<httpHandlers>
<add verb="*" path="MyHandler.new" type="MyHandler, MyHandlerAssembly" />
</httpHandlers>
But when i start the application i get an error about integrated pipeline.
Someone can explain how to correctly map the handlers??
Thanks and sorry for my bad english.