我有以下看法:-
@model IEnumerable<MvcApplication4.Models.customers>
@{
ViewBag.Title = "customer";
}
<h3>Avialble cusotmer</h3>
<table id ="avilalbe">
<tr>
<th>
@Html.CheckBox("ORG_NAME ", true) NAME
</th>
<th>
@Html.CheckBox("description ", true) Description
</th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.customer_NAME)
</td>
<td>
@Html.DisplayFor(modelItem => item.description)
</td>
</tr>
}
<a href=""> Extract To Excel </a>
如何根据复选框中的用户选择将模型数据提取到 .csv 中(包括名称和描述列或仅包括其中一个)。