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.
|
2
|
|
|
|
|
|
I don't understand the issue... Can you just do this?
If that isn't your issue, could you please include your code that used to work with the RenderUserControl? |
||||
|
|
|
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
or is that just a typo in your question? |
||
|
|
|
|
I created an empty MVC project (preview 5)
The following locations were searched: /Account/myPartial.ascx
The following locations were searched: ~/Account/myPartial.ascx
etc Never was the partial found. Only moving the partial to /Shared/myPartial and then calling the following seems to work.
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 |
||
|
|
