vote up 0 vote down star
1

Is there a way to load partial views from a class library?
I would like to pull out the common parts from several websites to make them easier to maintain.

Currently I render my partials with (for example)

<%Html.RenderPartial("~/Views/Search/_searchBlock.ascx", ViewData);%>

This is file based, but when creating a class library, the views are compiled. Is there a way to load libraries that are compiled in this library?

flag

70% accept rate

2 Answers

vote up 0 vote down check

The only way i can think to do this would be with embedded resources and a custom viewengine. Point reflector (or download the MVC soruce) at System.Web.Mvc.Html.RenderPartialExtensions

link|flag
Hmm, is there perhaps a more straightforward way to make controls available in multiple sites? – boris callens Apr 15 at 10:26
Im not sure, I'd be interested if there is. It will be a bit of a job to do it my way, you'll need to replace the call to BuildManager.CreateInstanceFromVirtualPath with something that reads the textstream for you file from the assembly resources, compile it into a ViewUserControl. effort basically – Andrew Bullock Apr 15 at 12:39
perhaps svn:externals could help you? – Andrew Bullock Apr 15 at 13:09
Care to elaborate? – boris callens Apr 15 at 13:57
bitworking.org/news/… You could put the shared .ascxs in their own repos and then use svn:externals to reference them from each project – Andrew Bullock Apr 15 at 14:50
show 1 more comment
vote up 0 vote down

See Phil Haacks new post for an alternative idea

link|flag
He, I was reading it whilst you answered. Appreciate you turning back tho this. Although it does look wicked, I fail to see how this could be of much use in my scenario. I think I'm going to have a stab at creating my own method that locates views. That way I could for example add a appKey that says where they are located and all sites would go pick it up from there rather then searching in it's own folder. – boris callens Apr 23 at 10:04
Its the virtualpathprovider business, thats what you need to override/implement to do what you want – Andrew Bullock Apr 23 at 18:38
Hmm, seems the rendering is file based untill deep in the engine :S This sucks. – boris callens Apr 27 at 13:44

Your Answer

Get an OpenID
or

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