I switched from MVC 1 to MVC 2. I use file.axd httphandler in my application and I installed routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); into your global routing. Since MVC 2 MVC ignores requests only /file.axd , not before /folder/file.axd.
Any changes to MVC 2?
I just want to make sure that all requests in any folder in any .axd file will be processed by my httphandler.
Thanks!
source share