I have a model:
public class MyListModel
{
public int ID {get;set;}
public List<User> Users{get;set;}
}
How do I use the Html.EditorFor method inside a foreach?
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<MyListModel>" %>
<table>
<tr>
<th></th>
</tr>
<% foreach (var item in Model.Users) { %>
<tr>
<td>
<%= Html.EditorFor(item.Enabled)%>
</td>
</tr>
</table>