📜  asp在表格中显示对象列表 - Html代码示例

📅  最后修改于: 2022-03-11 14:53:13.338000             🧑  作者: Mango

代码示例1
<% foreach(var notice in Model.Notices) { %>

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

<% } %>