I have solution with co-existing MVC and Web forms. I have a folder called New in my UI project with page as default.aspx.
By default mydomain/New lands me to tohis default.aspx page. Now i want to land it to MVC controller i have created.
New controller is: NewController and i want route all request like mydomain/New should land to this controller ignoring the physical file present in my project.
How can i do this?
Delete the physical page and folder. IIS won't send the request to MVC unless the physical path doesn't exist.