次のように、別の独立した Webapp を含む仮想ディレクトリの下に MVC4 Webapp (1) があります。
MainApp
Areas
SUBAPP <------ THIS is a Virtual Directory with its own Webapp
Views
_Layout_2.cshtml
Views
_Layout_1.cshtml
次に、MAINAPP から SUBAPP のレイアウトを次のように管理したいと思います。
_Layout_2.cshtml:
@{
Layout = "../../Views/_Layout_1.cshtml
}
....エラーが表示されます:
The virtual path '/Views/_Layout_1.cshtml' maps to another application,
which is not allowed
どうすればこれを達成できますか???