I'm using ASP.NET MVC 2 and MvcContrib 2 portable areas. The consuming application is leveraging a CustomWebFormViewEngine which is derived from the standard WebForm view engine. I want the portable area "Foo" to utilize the standard portable area embedded view engine. How do I go about doing this, without affecting the consuming application?

The consuming app is doing this:

ViewEngines.Engines.Add(new CustomWebFormViewEngine()));

I can NOT do something like the following in the portable area, since that will clear off the CustomWebFormViewEngine from the consuming application:

ViewEngines.Clear();
ViewEngines.Engines.Add(new WebFormViewEngine()));

So how do I get it so that a given portable area leverages the embedded view engine, but the rest of the application continues to use the CustomWebFormViewEngine ?

link|improve this question

feedback

1 Answer

(sorry I don't have enough rep to comment)

Can you use a different file extension for different views and then specify that in the ViewLocationFormat property of your view engine definition? For example, you can end all views that use the custom view engine definition with '.cve' Or have I misunderstood the question?

http://msdn.microsoft.com/en-us/library/dd492273.aspx

http://www.singingeels.com/Articles/Creating_a_Custom_View_Engine_in_ASPNET_MVC.aspx

link|improve this answer
That could be one way of getting to a solution, but it's a bit crufty. Ideally I'd like to not have a file extension carry special meaning in terms of a view engine. Thanks for the input though. – byte Jul 30 '11 at 4:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.