我有 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>
我该怎么做呢?