(论坛答疑点滴)如果用DataGrid实现类似DataList多列的效果
发表于:2007-07-01来源:作者:点击数:
标签:
上一次说了怎么利用DataGrid纵向显示
其实这么做的好处在于DataGrid能够方便的进行分页,这个排列次序接近于DataList的RepeatDirection="Vertical"效果
今天再来对上次的程序进行一下修改,实现RepeatDirection="Horizontal"的效果,同时启用DataGrid的分页。
这样可以弥补DataList不能自动分页的不足,但是效率上来说其实是很差的。
<asp:DataGrid id="DataGrid1" runat="server" AllowPaging="True" PageSize="4"></asp:DataGrid>
原文转自:http://www.ltesting.net