使用Razor View引擎从部分视图ASP.NETMVC 3中将内容注入特定部分我在我的_Layout.cshtml@RenderSection("Scripts", false)我可以很容易地从一个角度来使用它:@section Scripts {
@*Stuff comes here*@}我正在挣扎的是如何从部分视图中将一些内容注入到本节中。让我们假设这是我的视图页面:@section Scripts {
<script>
//code comes here
</script>}<div>
poo bar poo</div><div>
@Html.Partial("_myPartial")</div>我需要在Scripts一节_myPartial部分视图。我该怎么做?
3 回答
德玛西亚99
TA贡献1770条经验 获得超3个赞
_layout
@RenderSection("body_scripts", false)
index
@Html.Partial("Clients")@section body_scripts{ @Html.Partial("Clients_Scripts")}
clients
@section body_scripts{ @Html.Partial("Clients_Scripts")}
Clients_Scripts
body_scripts
- 3 回答
- 0 关注
- 515 浏览
添加回答
举报
0/150
提交
取消