Views in separate assemblies in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T06:10:33Zhttp://stackoverflow.com/feeds/question/19746http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/19746/views-in-separate-assemblies-in-asp-net-mvc3Views in separate assemblies in ASP.NET MVCErik van Brakel2008-08-21T12:37:23Z2009-10-03T20:29:31Z
<p>I'm trying to create a webapplication where I want to be able to plug-in separate assemblies. I'm using MVC preview 4 combined with Unity for dependency injection, which I use to create the controllers from my plugin assemblies. I'm using WebForms (default aspx) as my view engine.</p>
<p>If I want to use a view, I'm stuck on the ones that are defined in the core project, because of the dynamic compiling of the ASPX part. I'm looking for a proper way to enclose ASPX files in a different assembly, without having to go through the whole deployment step. Am I missing something obvious? Or should I resort to creating my views programmatically?</p>
<p><hr /></p>
<p>Update: I changed the accepted answer. Even though Dale's answer is very thorough, I went for the solution with a different virtual path provider. It works like a charm, and takes only about 20 lines in code altogether I think.</p>
http://stackoverflow.com/questions/19746/views-in-separate-assemblies-in-asp-net-mvc/19886#198867Answer by Dale Ragan for Views in separate assemblies in ASP.NET MVCDale Ragan2008-08-21T13:34:50Z2008-08-21T13:34:50Z<p>This is what I would recommend. I would just structure my views in the core project in a manner to accomplish what you want. Come up with a naming convention for your views for use and then create controls or partial views for reuse.</p>
<p>I would then leverage the IViewLocator interface to change where to look for the views. After that, you can set your ViewLocator when you create your controller using the unity logic you put in, based on the criteria you want to use.</p>
<p>First, you will want to create a ViewLocator based on the structure you came up with.</p>
<pre><code>public class CustomViewLocator : ViewLocator
{
private string _area;
public CustomViewLocator(string area)
{
_area = area;
}
protected override string GetMasterLocation(RequestContext requestContext, string masterName)
{
RegisterMasterLocationFormats();
return base.GetMasterLocation(requestContext, masterName);
}
protected override string GetViewLocation(RequestContext requestContext, string viewName)
{
RegisterViewLocationFormats();
return base.GetViewLocation(requestContext, viewName);
}
private void RegisterViewLocationFormats()
{
if (!String.IsNullOrEmpty(_area))
{
ViewLocationFormats = new[]
{
"~/Views/" + _area + "/{1}/{0}.aspx",
"~/Views/" + _area + "/{1}/{0}.ascx"
};
}
}
private void RegisterMasterLocationFormats()
{
if (!String.IsNullOrEmpty(_area))
{
MasterLocationFormats = new[]
{
"~/Views/" + _area + "/{1}/{0}.master",
"~/Views/" + _area + "/Layouts/{0}.master"
};
}
}
}
</code></pre>
<p>Then in your ControllerFactory, inside the CreateController method that you are using with unity, use this line to set your ViewLocator for the controller.</p>
<pre><code>public IController CreateController(RequestContext context, string controllerName)
{
var controller = null; // Unity logic to retrieve controller.
// Set the ViewLocator
if (controller != null)
((WebFormViewEngine)controller.ViewEngine).ViewLocator = new CustomViewLocator("Structure1");
return controller;
}
</code></pre>
<p>Right now there really isn't a good way to implement what you want, but what I outlined above is probably the simplest route.</p>
http://stackoverflow.com/questions/19746/views-in-separate-assemblies-in-asp-net-mvc/35250#352504Answer by Joseph Kingry for Views in separate assemblies in ASP.NET MVCJoseph Kingry2008-08-29T20:34:48Z2008-08-29T20:34:48Z<p>Essentially this is the same issue as people had with WebForms and trying to compile their UserControl ASCX files into a DLL. I found this <a href="http://www.codeproject.com/KB/aspnet/ASP2UserControlLibrary.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/ASP2UserControlLibrary.aspx</a> that might work for you too.</p>
http://stackoverflow.com/questions/19746/views-in-separate-assemblies-in-asp-net-mvc/1514764#15147640Answer by weelink for Views in separate assemblies in ASP.NET MVCweelink2009-10-03T20:29:31Z2009-10-03T20:29:31Z<pre><code>protected void Application_Start()
{
WebFormViewEngine engine = new WebFormViewEngine();
engine.ViewLocationFormats = new[] { "~/bin/Views/{1}/{0}.aspx", "~/Views/Shared/{0}.aspx" };
engine.PartialViewLocationFormats = engine.ViewLocationFormats;
ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(engine);
RegisterRoutes(RouteTable.Routes);
}
</code></pre>
<p>Set the 'Copy to output' property of your view to 'Copy always'</p>