I am trying to integrate an old ReportViewer Webform into my current MVC3 project. I would like it to be available at http://<server>/Reports/ViewReport.aspx
. At first I created a folder in the root of my project titled Reports
, dumped the page in there, and it worked just fine.
However, I now have an Area also called Reports
, and I had to get rid of the folder in order for the default routing to work correctly.
How can I configure my routing so that the Webform URL appears to be coming from Reports
even if it's physically elsewhere in my project?