.NET Repeater1控件 无刷新分页怎么写啊?

2025-02-21 18:17:05
推荐回答(6个)
回答1:

把Repeater放在Updatepanel中不就无刷新了嘛,分页用Sql语句:select top 每页记录数* from 表 where 条件 and id not in(select top 每页记录数*(当前页数-1) id from 表 where 条件 order by 排序的字段) order by 排序的字段

回答2:

ajax+aspnetpager

回答3:

1.用ajax,用updatepanel,然后用aspnetpager控件。
2.不用repeater,用Jquery的ajax请求,直接绑定。

回答4:

用ajax

回答5:

ScriptManager

回答6:

updatepanel+ aspnetpager