Return to View of Another Controller in MVC

  1. public ActionResult Loan()  
  2. {  
  3.    
  4.    return RedirectToAction("Details","Student");  

  5. }  
Note:
 
Details - Action/View of another controller.
Student- Controller's name.