How do I register multiple paths for a HttpHandler in IIS7?
- by Daniel T.
I have a HttpHandler that resizes images based on the querystring, so requesting something like:
http://server/image.jpg?width=320&height=240
will give you a resized image that's 320x240.
In the IIS Manager, under Handler Mappings, I mapped my handler's path as *.jpg,*.gif,*.bmp,*.png. However, this doesn't activate the handler. If I…