如下代码(问题在代码内说明)
<asp:repeater ID="SmallClassList" runat="server">
<itemtemplate>
<%#DataBinder.Eval(Container.DataItem, "xxx") %>
如果我要在这里输出下一条记录xxx字段的数据该怎么写?
</itemtemplate>
</asp:repeater>
cannot, consider to output the data with Table/TableRow/TableCell yourself
or use DataList and its RepeatColumns=2 and RepeatDirection=Horizontal
好像不行哦……