dot net Core の View (razor)テンプレートの値と for ループと三項演算子

● dot net Core の View (razor)テンプレートの値と for ループ

コントローラー

            ViewBag.title = "タイトルです-";
            ViewBag.collections = collections;
            return View("/Views/test.cshtml");

ビュー ( cshtml )

@foreach(var data in (@ViewBag.collections)) {
    @data.name
}
</table>

● .Net core の razor テンプレートで三項演算子を使用する

ビュー ( cshtml )

@(User.Identity.IsAuthenticated ? "auth" : "anon")

関連エントリー

No.1885
12/23 13:17

edit

razor