GridView aspx c#

GridView aspx c#

提问人:Rusty 提问时间:11/9/2023 最后编辑:FilburtRusty 更新时间:11/9/2023 访问量:33

问:

我有一个正在 Visual Studio 2019 中开发的应用程序。 我有一个设置为自动生成列的 gridView。 网格有分页,我不想要,所以我设置了AllowPaging="false" PagerSettings-Visible="false"

但是,这现在只返回数据网格中的第一页行,我希望它显示所有行。我已将高度设置为自动,但它仍然不会显示所有行。就像寻呼的可见性是隐藏的,但功能仍然存在。

这是代码 aspx 代码:

<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>
c# asp.net 网格视图

评论

0赞 Crowcoder 11/9/2023
它显示多少行?您确定数据源包含的数据多于网格中显示的数据吗?
0赞 Rusty 11/9/2023
是的,有 13 行数据,但 Grid 只显示 10 行。通过将页面大小增加到 20 解决了该问题

答:

0赞 Rusty 11/9/2023 #1

设法解决了这个问题 添加 pagesize=20