-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.cshtml
39 lines (32 loc) · 1.33 KB
/
Index.cshtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@{
ViewBag.Title = "List Example";
}
@model WebApp.MVC.Models.ListExampleModel
@using (Html.BeginForm())
{
<div style="padding:1em;">
<table class="table table-bordered table-sm table-hover">
<thead class="table-light">
<tr>
<th>ID</th>
<th>名前</th>
<th>年齢</th>
</tr>
</thead>
<tbody>
<!-- インデックス指定で描画しないと、post時にバインドされない -->
<!-- 連続するインデックスでないとだめ -->
<!-- 当然Postで投げれるデータしかバインドされない 編集項目以外hidden等で保持が必要 -->
@for (var i = 0; i < Model.UserList.Count; i++)
{
<tr>
<td>@Html.TextBoxFor(m => m.UserList[i].UserId, new { @class = "form-control" })</td>
<td>@Html.TextBoxFor(m => m.UserList[i].UserName, new { @class = "form-control" })</td>
<td>@Html.TextBoxFor(m => m.UserList[i].Age, new { @class = "form-control" })</td>
</tr>
}
</tbody>
</table>
</div>
<input type="submit" value="送信" class="btn btn-primary"/>
}