我有一个简单的中继器控件,它有 5 列和显示良好的数据。但是,我需要将第 6 个数据项放在每个表行之后的下一行中。
我已经尝试将第 6 项放置在交替模板项中,它可以执行我想要的操作,但是不会遍历所有行。
从下面的代码中,Notes 数据项是我希望在每一行之后出现在新行中的数据项......下面的代码可以做到,但它不会循环:
<HeaderTemplate>
<table class="tblMoves" >
<tr>
<th>
Type
</th>
<th>
ID
</th>
<th>
First Name
</th>
<th>
Last Name
</th>
<th>
Date
</th>
</tr>
</HeaderTemplate>
<AlternatingItemTemplate>
<tr>
<td colspan="5"> <%#Eval("Notes")%></td>
</tr>
</AlternatingItemTemplate>
<ItemTemplate>
<tr>
<td><asp:Label ID="empid" Text='<%#Eval("type") %>' runat="server"></asp:Label></td>
<td><asp:Label ID="Label1" Text='<%#Eval("ID") %>' runat="server"></asp:Label></td>
<td><asp:Label ID="Label2" Text='<%#Eval("FirstName") %>' runat="server"></asp:Label></td>
<td><asp:Label ID="Label3" Text='<%#Eval("LastName") %>' runat="server"></asp:Label></td>
<td><asp:Label ID="Label4" Text='<%#Eval("Date", "{0:MM/dd/yyyy}") %>' runat="server"></asp:Label></td>
</tr>
</ItemTemplate>
<FooterTemplate> </table></FooterTemplate>
</asp:Repeater>