I was wondering if it is possible (even if it is a long shot) to pipe generated markup from one view engine into another with ASP.NET?
Could a view engine be built to explicitly to support such a thing (given the constraint of the ASP.NET Framework)?
What about Web Forms and Razor?
If you want to include output from one view (Razor) into the another could you create it as a partial view and call render partial in the other.
Even it your other view is not partial you can create some kind of “adapter partial view” that will call @Html.RenderAction() or @Html.RenderPartial() in order to include the first view.