【发布时间】:2015-12-27 03:19:22
【问题描述】:
Output is showing like: (Only the employee IDs are showing)
1001110012100141001510016;
代码
编辑器模板(位置视图\Shared\EditorTemplate\Employee.cshtml
@model MultiRowDEL.Models.Employee
<tr>
<td>
<input type="checkbox" name="empIdsToDel" id="empIdsToDel" value="@Model.EmployeeID" />
</td>
<td>
@Model.Name
</td>
<td>
@Model.Gender
</td>
<td>
@Model.City
</td>
</tr>
【问题讨论】:
标签: html model-view-controller editorformodel