Liste des objets d'affichage ASP dans le tableau

<% foreach(var notice in Model.Notices) { %>

   <tr>
     <td><%= notice.StartDate.ToString() %></td>
     <td><%= notice.EndDate.ToString() %></td>
     <td><%= notice.Content %></td>
   </tr>

<% } %>
Victorious Vole