I have 2 controllers
- HomeController - Index() - AccountController - Login()
In my Home / Index.cshtml, I want to load the AccountController / Login method, which then returns the view and displays it in my Home / Index view.
Home /Index.cshtml
<div class="row-fluid"> <div class="col-md-12"> </div> </div>
How to do it?
c # asp.net-mvc razor
Jimmyt1988
source share