I have a mixed ASP.Net and MVC3 project. Site delivers both aspx and MVC views. Essentially working EXCEPT all .axd requests are being intercepted by MVC and causing exceptions:
The controller for path '/Members/Chart.axd' was not found or does not implement IController
.
My routes look like this:
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("{resource}.aspx/{*pathInfo}");