我有2个控制器
- HomeController
- Index()
- AccountController
- Login()
在我的Home / Index.cshtml中,我想加载AccountController / Login方法,然后返回一个视图并在我的Home / Index视图中显示它。
主/ Index.cshtml
<div class="row-fluid">
<div class="col-md-12">
<!-- Render the view that the AccountController/Login method denotes -->
</div>
</div>
我该怎么做?
答案 0 :(得分:22)
将它与您的实际控制器/视图名称一起使用
@Html.Partial("../Home/Login", model)
或
@Html.Action("action", "controller", parameters)