我有一个在Visual Studio 2019中开发的应用程序。我有一个设置为自动生成列的gridView。网格有分页,我不想要,所以我设置了AllowPaging="false" PagerSettings-Visible="false"
然而,这现在只返回数据网格中的第一页行,我希望它能显示所有的行。我已经将高度设置为自动,但它仍然不会显示所有的行。这就像分页的可见性被隐藏,但功能仍然存在。
这是一个简单的例子。
<cc1:GridView ID="tgvCallDetailSummary"
runat="server"
Style="position: absolute; top:25px; left: 5px; height:auto "
AllowPaging="false"
PagerSettings-Visible="false"
AutoGenerateColumns="true"
SqlStatement=""
StaticTableWidth="0"
OnPreRender="tgvCallDetailSummary_PreRender">
<Columns>
</Columns>
</cc1:GridView>
字符串
1条答案
按热度按时间kmbjn2e31#
解决了添加pagesize=20的问题