I have a MVC4 application in which I need to add some old aspx pages. I added it in Views/Report folder like this
I have added the following code to routeconfig to avoid routing for aspx pages.
routes.IgnoreRoute("{resource}.aspx/{*pathInfo}");
but still when I try to open the page, I get resource not found error from server.
Can anyone show me what I am missing.