我一直在尝试寻找某种方法来重定向到Index
另一个控制器的视图。
public ActionResult Index()
{
ApplicationController viewModel = new ApplicationController();
return RedirectToAction("Index", viewModel);
}
这就是我现在尝试过的。现在,我得到的代码具有ActionLink
链接到我也需要的页面的代码Redirect
。
@Html.ActionLink("Bally Applications","../Application")