Search Results

0
votes
2answers
16 views

Can you use relative paths when registering handlers in web.config

I need to register a httphandler in a sub folder ("myTest") to my web application. I know that a solution would be to add a webconfig to the myTest folder, but that is not an option in this case. …
0
votes

How do I pre-empt IIS StaticFileHandler with my own HttpHandler

I've stumpled on this as well. My mistake was that I registed the handler under system.web instead of system.webserver. …