How do I combine multiple view engines in Mvc? [duplicate]
Possible Duplicate:
How to use multiple view engines in ASP.NET MVC application
I am combining two mvc apps, one using razor and one using web forms v开发者_如何学编程iew engine. How do I make the ViewEngine select first one view engine and then the other if a match fails?
ViewEngines.Engines.Add(new YourViewEngine())
精彩评论