ASP.Net MVC with Razor and ASPX view engine both in one project

asp.net-mvc, razor

Solution

I believe this ASP.NET MVC Blog Post should give you what you're after.

Problem

Can we use both Razor and ASPX view engine in one asp.net mvc project? For example, Controller1 will use cshtml page Controller2 will use aspx view. or can we change viewengine type dynamically?

Original source