私は剃刀のビューからコントローラに学生の出席を取得したいと思います。ある行で、ラジオボタンの値にアクセスしたいと思います。そして、多くの行があります。一度にすべての行データにアクセスしてコントローラに送信するにはどうすればよいですか?学生の出席データをフォームからコントローラに取得する
マイカミソリビューは次のとおりです。
<table class="table">
<thead class="thead-inverse">
<tr>
<th>Full Name</th>
<th>Roll No</th>
<th>Status</th>
@* <th>Status</th>*@
</tr>
</thead>
<tbody>
@using (@Html.BeginForm("Save", "Attendance", FormMethod.Post, new { @class = "form-horizontal" }))
{
foreach (var student in Model.Students)
{
<tr>
<td>@student.Name</td>
<td>@student.RollNo</td>
<td>
<div data-toggle="buttons">
<label class="btn btn-success active">
<input type="radio" name="options" id="1" autocomplete="off" checked> Present
</label>
<label class="btn btn-danger">
<input type="radio" name="options" id="2" autocomplete="off" checked> Absent
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="3" autocomplete="off" checked> On Leave
</label>
<label class="btn btn-warning">
<input type="radio" name="options" id="4" autocomplete="off" checked> Short Leave
</label>
</div>
</td>
</tr>
}
<div class="form-group">
<div class="col-lg-10 col-lg-offset-2">
<button type="submit" class="btn btn-success">Submit</button>
</div>
</div>
}
</tbody>
</table>
あなたは私が達成したいものを見ることができるように私は私のウェブページのスクリーンショットを添付しました。