GridView aspx c#

5cnsuln7  于 2023-11-20  发布在  .NET
关注(0)|答案(1)|浏览(101)

我有一个在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>

字符串

相关问题