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.
我正在使用带有分页的中继器控制。对于前 100 条记录,我显示 1、2、3、4,“下一个”链接,即每页 25 条记录。
单击“下一步”链接,我将从数据库中获取下 100 条记录。当我点击“上一个”链接时,同样的方式。我实现了所有这些功能。
现在,如果我单击同一页面,我需要避免不必要的会话命中。
例如:考虑我在第 2 页,如果我再次单击第“2”页链接,我不想再次点击会话。如何以更简单的方式实现这一点。
我正在使用 C#、Javascript Pagemethods ..
谢谢是提前。