I've integrated MVC into an old web forms app. The version ASP.NET version is 4.0.
The following configuration will cause the Default.aspx page to not be loaded by default when navigating to the domain. (i.e. http://www.myfakeeeeeeeeeeeedomain.com/)
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
</system.webServer>
However, if I switch the value to false, my default.aspx page will load by default when navigating to the domain, but...my MVC routing requests will then not work. How can I keep the MVC routing while at the same time having my default.aspx page display correctly?
Note: The "Default Page" option is correctly setup in IIS 7.
I can provide more info if needed.