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.
我有一个 DataList 并将其绑定到一个 DataTable。
我想为它设置 RowReapeat ,限制行。
我的 DataTable 有很多行。我想为 DataList 设置 3 行。
我计算 DataTable 的行数,然后将 ColumnRepeat 设置为 (Rows of DataTable/3)....
有没有其他方法可以限制 DataList 中的行?
您可以从 SQL 查询中限制它,即
select Top 3 Id from table;
如果您想在 datalist 中进行分页,请参考此链接Datalist Paging?