表 Rollno名字 101 XYZ 102 ABC
使用以下代码我只能显示表格的第一行 那是 101 XYZ
rollno:
'>
名称:
'>
如何显示表格的下一行
102 ABC
我使用它绑定到formview。
<ItemTemplate> rollno: <asp:Label ID="itemLabel" runat="server" Text='<%# Bind("rollno") %>'></asp:Label><br /> name: <asp:Label ID="imageLabel" runat="server" Text='<%# Bind("name") %>'></asp:Label>
</ItemTemplate>
答案 0 :(得分:0)
您可以使用以下ItemTemplate
在新行中创建下一行。
<ItemTemplate>
<div>
rollno: <asp:Label ID="itemLabel" runat="server" Text='<%# Bind("rollno") %>'></asp:Label>
name: <asp:Label ID="imageLabel" runat="server" Text='<%# Bind("name") %>'> </asp:Label>
</div>
</ItemTemplate>
要获取下一行,您需要将IEnumerable类型的数据源绑定到FormView,例如
FormView