0
我試圖找出最好的方式來基於行的表中的複選框是否被選中或不值保存到我的數據庫。幫助循環並保存選定一個對象在ASP.NET MVC
在此我想向選定行(位置)保存到「locationtemplate」對象我的ASP.NET MVC應用程序。
我想要做的是爲我視圖中表格中的每個選定行(位置),將其保存到位置模板對象。我不知道我應該在該行是否選擇不執行檢查。
查看代碼(到目前爲止):
foreach(var locationTemplateLocationRow in Model.LocationTemplateLocationRows)
{
<tr>
<td><input type="checkbox" name="LocationToAdd"/></td>
<td><%= locationTemplateLocationRow.Name%></td>
<td><%= locationTemplateLocationRow.LastDateSent%></td>
</tr>
}
基於什麼選擇,我想我的檢查地點的名單發送給我的控制器上我的頭攢動,並從那裏走。
任何幫助將不勝感激。