从区域调用 RenderPartial
这是我的文件夹结构
我想从我所在区域的视图中调用部分视图
This is my folder structure
I wan to call a partialview from my view on my area
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
这是我的文件夹结构
我想从我所在区域的视图中调用部分视图
This is my folder structure
I wan to call a partialview from my view on my area
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以在渲染视图时指定视图的完整位置:
更新:
为了从
Shared
文件夹中调用部分视图:You could specify the full location of the view when rendering it:
UPDATE:
And in order to call a partial from the
Shared
folder: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?