私はlayout
のページに変数を設定する必要があります。例:レイアウトページへのデータの受け渡し
@ModelType KarateAqua.schoolModel
<html>
<body>
@RenderBody()
<div id="footer">
<div class="content">
<div class="bottom_logo">
<a href="/"><span class="inv">@Model.schoolName</span></a>
</div>
</div>
</div>
</body>
</html>
私はすべてのActionResult
でこれを移入する必要はありません。一度だけデータをlayout
ページに渡してすべてのインスタンスに対して実行する方法はありますか?
最高の答えは:http://stackoverflow.com/questions/13225315/pass-data-to-layout-that-are-common-to-all-pages – DeeArgee