如何使用Razor从我的视图中调用控制器操作?

时间:2013-11-08 22:31:41

标签: c# asp.net-mvc razor

我有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>

我该怎么做?

1 个答案:

答案 0 :(得分:22)

将它与您的实际控制器/视图名称一起使用

@Html.Partial("../Home/Login", model)

@Html.Action("action", "controller", parameters)