1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ASP.NET MVC5(C#)ビュー View

Last updated at Posted at 2015-02-24

自分用メモ

ビューフォルダの所在

・ Controllerファイルが Controllers/<ページ名>Controller.cs の場合

Controllerファイル作成時に下記にViewフォルダが自動で作成される。

・ Views/<ページ名>/

ビューファイルの所在

各ビューファイルは下記名称で作成する。

・ View/<ページ名>/<アクション名>.cshtml

for文が使える

例)



@{
    ViewBag.Title = "Welcome";
}

\Welcome\

\
    @for (int i = 0; i < ViewBag.NumTimes; i++)
    {
        @ViewBag.Message
    }
\
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?