vote up 3 vote down star
2

How can I have a view render a partial (user control) from a different folder? With preview 3 I used to call RenderUserControl with the complete path, but whith upgrading to preview 5 this is not possible anymore. Instead we got the RenderPartial method, but it's not offering me the functionality I'm looking for.

flag

68% accept rate

3 Answers

vote up 8 vote down check

I don't understand the issue...

Can you just do this?

<% Html.RenderPartial("~/Views/AnotherFolder/Messages.ascx", ViewData.Model.Successes); %>

If that isn't your issue, could you please include your code that used to work with the RenderUserControl?

link|flag
I don't know why, but I just ignored the "Views" part for some reason. Thanks. – boris callens Oct 20 '08 at 9:02
I wish we could just say /AnotherFolder/Messages – Simon Mar 13 at 3:10
vote up 1 vote down

The VirtualPathProviderViewEngine, on which the WebFormsViewEngine is based, is supposed to support the "~" and "/" characters at the front of the path so your examples above should work.

I noticed your examples use the path "~/Account/myPartial.ascx", but you mentioned that your user control is in the Views/Account folder. Have you tried

<%Html.RenderPartial("~/Views/Account/myPartial.ascx");%>

or is that just a typo in your question?

link|flag
vote up 0 vote down

I created an empty MVC project (preview 5)
Added a user controll to the Views/Account folder named myPartial.ascx
Then from Home/Index I tried one of the following combinations:

<%Html.RenderPartial("/Account/myPartial.ascx");%>

The following locations were searched: /Account/myPartial.ascx

<%Html.RenderPartial("~/Account/myPartial.ascx");%>

The following locations were searched: ~/Account/myPartial.ascx

<%Html.RenderPartial("~/Account/myPartial");%>

etc

Never was the partial found. Only moving the partial to /Shared/myPartial and then calling the following seems to work.

<%Html.RenderPartial("myPartial");%>

What am I missing?


Before this I had created my own helper class that had several extention RenderPartial methods to the Html class with or without controll name and viewdata. They would generate the relative path (through a pathhelper class) and call RenderUserControl with that path

link|flag

Your Answer

Get an OpenID
or

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