Answers:
只需包括带有文件扩展名的视图路径即可。
剃刀:
@Html.Partial("~/Views/AnotherFolder/Messages.cshtml", ViewData.Model.Successes)
ASP.NET引擎:
<% Html.RenderPartial("~/Views/AnotherFolder/Messages.ascx", ViewData.Model.Successes); %>
如果那不是您的问题,可以请您提供用于RenderUserControl的代码?
FindPartialView
使用类似的方法覆盖它的方法if(partialViewName.Contains"/")partialViewName="~/Views/"+partialViewName;
在我的情况下,我使用的是MvcMailer(https://github.com/smsohan/MvcMailer),想要从另一个不在“共享”文件夹中的文件夹访问局部视图。上面的解决方案不起作用,但是使用相对路径起作用。
@Html.Partial("../MyViewFolder/Partials/_PartialView", Model.MyObject)
如果您经常使用其他路径,则可以永久修复此问题,而不必始终指定路径。默认情况下,它将检查“视图”文件夹和“共享”文件夹中的部分视图。但是说您想添加一个。
将类添加到“模型”文件夹:
public class NewViewEngine : RazorViewEngine {
private static readonly string[] NEW_PARTIAL_VIEW_FORMATS = new[] {
"~/Views/Foo/{0}.cshtml",
"~/Views/Shared/Bar/{0}.cshtml"
};
public NewViewEngine() {
// Keep existing locations in sync
base.PartialViewLocationFormats = base.PartialViewLocationFormats.Union(NEW_PARTIAL_VIEW_FORMATS).ToArray();
}
}
然后在您的Global.asax.cs文件中,添加以下行:
ViewEngines.Engines.Add(new NewViewEngine());
我创建了一种变通方法,似乎工作得很好。我发现需要切换到其他控制器的上下文以进行动作名称查找,视图查找等。为实现此目的,我为以下操作创建了新的扩展方法HtmlHelper
:
public static IDisposable ControllerContextRegion(
this HtmlHelper html,
string controllerName)
{
return new ControllerContextRegion(html.ViewContext.RouteData, controllerName);
}
ControllerContextRegion
定义为:
internal class ControllerContextRegion : IDisposable
{
private readonly RouteData routeData;
private readonly string previousControllerName;
public ControllerContextRegion(RouteData routeData, string controllerName)
{
this.routeData = routeData;
this.previousControllerName = routeData.GetRequiredString("controller");
this.SetControllerName(controllerName);
}
public void Dispose()
{
this.SetControllerName(this.previousControllerName);
}
private void SetControllerName(string controllerName)
{
this.routeData.Values["controller"] = controllerName;
}
}
在视图中使用此方法的方式如下:
@using (Html.ControllerContextRegion("Foo")) {
// Html.Action, Html.Partial, etc. now looks things up as though
// FooController was our controller.
}
如果您的代码要求controller
路由组件保持不变,则可能会有不良的副作用,但是到目前为止,在我们的代码中,这种方法似乎没有任何负面影响。
WebFormsViewEngine所基于的VirtualPathProviderViewEngine应该在路径的开头支持“〜”和“ /”字符,因此上面的示例应该可以使用。
我注意到您的示例使用路径“〜/ Account / myPartial.ascx”,但是您提到您的用户控件位于Views / Account文件夹中。你有没有尝试过
<%Html.RenderPartial("~/Views/Account/myPartial.ascx");%>
还是只是您输入的错字?
对于使用ASP.NET Core 2.1或更高版本并希望使用部分标记帮助程序语法的读者,请尝试以下操作:
<partial name="~/Views/Folder/_PartialName.cshtml" />
代字号(〜)是可选的。
创建一个自定义View Engine并具有返回ViewEngineResult的方法,在此示例中,您只是覆盖_options.ViewLocationFormats
并添加文件夹目录:
public ViewEngineResult FindView(ActionContext context, string viewName, bool isMainPage)
{
var controllerName = context.GetNormalizedRouteValue(CONTROLLER_KEY);
var areaName = context.GetNormalizedRouteValue(AREA_KEY);
var checkedLocations = new List<string>();
foreach (var location in _options.ViewLocationFormats)
{
var view = string.Format(location, viewName, controllerName);
if (File.Exists(view))
{
return ViewEngineResult.Found("Default", new View(view, _ViewRendering));
}
checkedLocations.Add(view);
}
return ViewEngineResult.NotFound(viewName, checkedLocations);
}