Reputation: 4431
How to call handler captcha.ashx file routing asp.net 4.0 without MVC?
Upvotes: 0
Views: 565
Reputation:
use typeof(IHttpHandler) instead of typeof(Page) as IHttpHandler
typeof(IHttpHandler)
typeof(Page) as IHttpHandler
Upvotes: 1