从区域调用 RenderPartial

发布于 2024-10-12 14:36:50 字数 110 浏览 2 评论 0原文

这是我的文件夹结构

alt text

我想从我所在区域的视图中调用部分视图

This is my folder structure

alt text

I wan to call a partialview from my view on my area

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

許願樹丅啲祈禱 2024-10-19 14:36:50

您可以在渲染视图时指定视图的完整位置:

<% Html.RenderPartial("~/Areas/User/Views/SomeController/Foo.ascx"); %>

更新:

为了从 Shared 文件夹中调用部分视图:

<% Html.RenderPartial("~/Views/Shared/Foo.ascx"); %>

You could specify the full location of the view when rendering it:

<% Html.RenderPartial("~/Areas/User/Views/SomeController/Foo.ascx"); %>

UPDATE:

And in order to call a partial from the Shared folder:

<% Html.RenderPartial("~/Views/Shared/Foo.ascx"); %>
淡看悲欢离合 2024-10-19 14:36:50

geocine,请尝试一下这个。

<% Html.RenderPartial(Url.Content("~/Views/Shared/Foo.ascx")); %>

它能解决您的问题吗?

geocine, please try this one.

<% Html.RenderPartial(Url.Content("~/Views/Shared/Foo.ascx")); %>

Does it solve your problem?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文