Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个分配了数据源的 Asp.net gridview。网格视图位于具有固定高度的 div 内。如果行超过 20,我想创建另一个 div。因此,在第一个 div 上只显示前 20 行,对于其他 20 行,将创建一个新的动态 div,其余行将放置在其中。有什么建议么
在第一个 GridView 中,我们将其称为“GridViewA”禁用分页并设置PageSize为 20。
PageSize
如果您的 DataSource 超过 20 条记录,请将另一个名为“GridViewB”的 GridView 放入您的另一个 div,禁用分页,将 PageSize 设置为 20,设置与“GridViewA”相同的 DataSource。唯一的区别是您需要将当前页面设置为 2。
使用这种方法,您将在“GridViewA”中显示 1-20 条记录,在“GridViewB”中显示 21-n 条记录。