我必須將複選框值和文本框值綁定到model.Here我正在使用模型來檢索和發佈數據。 我試過幾個選項,但它沒有奏效。將複選框和文本框綁定到視圖模型
下面是我的代碼:
@model IEnumerable<ALDS.Web.Areas.AR.Models.ReportViewModel>
@{
ViewBag.Title = "Standings";
}
<table class="table table-bordered">
<thead>
<tr>
<th>LR Date</th>
<th>LR Line No</th>
<th>Issue</th>
<th>Correction Response</th>
<th>Remarks</th>
<th>Submission</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<td>
@item.InsertDate
</td>
<td>
@item.LRLineID <a href="">View</a>
</td>
<td>Margin % incorrect</td>
<td><label for="cbox1">Corrected</label> <input type="checkbox" name="Corrected" value="@item.Status" /> <label for="cbox1">Neglected</label> <input type="checkbox" name="Neglected" value="@item.Status"/></td>
<td><input type="text" value="@item.Comments"/></td>
<td><a href="@Url.Action("Update","Error",Model)">Submit</a></td>
</tr>
}
</tbody>
</table>
我要送的複選框,文本框的值到控制器。 請幫忙。
不要忘記告訴OP把他的模型ID放在'.hidden()' –
它沒有用。 :| – user3206357
你沒有把表格標籤「使用表格...」? – TTCG