0
現在、私は_viewstart.cshtml
にこのコードを使用して、異なるレイアウトに適用するレイアウトを決定しています。剃刀のさまざまなビューに異なるレイアウトを適用する
if ((ViewContext.View.Path == "/Views/Register/Index.cshtml")
|| (ViewContext.View.Path == " /Views/Register/Billing.cshtml")
|| (ViewContext.View.Path == "/Views/Register/Register.cshtml"))
{
Layout = "_AppLayout";
} else { Layout = "_Layout"; }
これを行う方法はありますか?