After installing CaptchaMVC I navigated to the page where I want to test the functionality - ~/about.
For the image localhost:51860/DefaultCaptcha/Generate?t=6d9ab0cefbb8496582b1db592eff66f, I see a broken link.
I added routes.IgnoreRoute("DefaultCaptcha/{*pathInfo}"); and also tried routes.IgnoreRoute("DefaultCaptcha/Generate"); to the top of my routes, but the image still does not appear, and navigating to the image url returns with a 404 not found error.
When I remove all my routes from Global.asax, this works fine.
The issue I think is that this pattern matches this route:
routes.MapRoute(name: "WholeCountryCategoryResults1", url: "{categoryName}/{searchTerm}/", defaults: new { controller = "Results", action = "SearchWholeCountryCategory" });
The rest of the routes shouldn't matter, as the rules are executed in order, so what's the issue here?
Thanks.