Just notice that I found this topic to search for the same question, but the answers did not work: in the Orchard CMS modules you cannot use the neat Pittfall solution , you must use relative paths to return partial views. Let's say you have a controller
Controllers/SiteController.cs
and you want to return a partial view
Shared/MessageList/Items
then in your action methods you need to write
return PartialView("../Shared/MessageList/Items");
ViRuSTriNiTy Feb 25 '15 at 15:33 2015-02-25 15:33
source share