たとえば、2つの類似した単純なMVCアプリケーションがあります。
Application1
:
HomeController
->のビューをIndex
返すアクションAnotherHome
Application2
:
AnotherHomeController
->ビューAnotherIndex
も返すアクションAnotherHome
Application1インデックスアクション:
public ActionResult Index()
{
return View("AnotherHome");
}
実行Application1
してレンダリングする必要がありますAnotherHome
。アプリを実行すると、次のエラーが発生することは明らかです。
The view 'AnotherHome' or its master was not found or no view engine supports the searched locations. The following locations were searched:
~/Views/Home/AnotherHome.aspx
~/Views/Home/AnotherHome.ascx
~/Views/Shared/AnotherHome.aspx
~/Views/Shared/AnotherHome.ascx
~/Views/Home/AnotherHome.cshtml
~/Views/Home/AnotherHome.vbhtml
~/Views/Shared/AnotherHome.cshtml
~/Views/Shared/AnotherHome.vbhtml
たとえば、ビューエンジンにビューを検索させるにはどうすればよいですApplication2/Views/AnotherHome/AnotherIndex.cshtml
か?