How to integrate ASP.Net Webform website with ASP.Net MVC web application?

How can I run both of them on one main website, say www.example.com, which is written and deployed using the ASP.NET MVC Visual Studio web application project, and where the ASP.Net Web Forms website will run from a subdirectory of the main site, say www.example.com/myapp?

+6
web-applications asp.net-mvc website integration
source share
1 answer

See the Hanselman blog article. The basic idea is that you add a regular WebForm to your MVC project, and then tell the routing engine to ignore this path when performing MVC routing.

+5
source share

All Articles