Reputation: 32291
I am trying to get a captcha web control to display, but it isn't going into the HttpHandler that I created. This isn't my project and it is quite big so I'm not sure what is going on. Is there any tools or techniques to see which handler is being called.
Upvotes: 0
Views: 80
Reputation: 5914
Seems that handler is not registered in web.config? If you can debug it, set breakpoint in ProcessRequest method.
Upvotes: 2
Reputation: 15673
Have you looked at Trace.axd? It should list which modules and handlers get called if I recall correctly.
Upvotes: 1
Reputation: 9844
Add in your handlers:
Debugger.Launch()
If this handler execute then debugger start.
Upvotes: 0