asp 預存程序分頁代碼第1/2頁

來源:互聯網
上載者:User

預存程序採用的是select top 加 not in的方式完成,速度也算是相當快了 我測試過了百萬級資料量一般查詢在1秒一下,貼出來大家交流下,看有沒有什麼好的建議。
簡單幾句話就可以實現分頁功能,請看代碼:
最簡單使用方法(適用於任何資料表):
test.asp 複製代碼 代碼如下:<!--#include file="conn.asp"-->
<!--#include file="Page.asp"-->
<%
Set My = New Page
With My
.SetConnstr=Connstr '資料庫連結字串
.SetStrTable="users" '表名
.SetStrText="id,username,type,names" '查詢的欄位
.SetStrIndex="id" '主鍵
rsArray=.GetRs() '返回資料,類型為數組
End With
%>
<table>
<%
if IsArray(rsArray) then
For i = 0 To UBound(rsArray, 2)
%>
<tr>
<td><%= rsArray(0, i) %></td>
<td><%= rsArray(1, i) %></td>
<td><%= rsArray(2, i) %></td>
</tr>
<%
next
end if
%>
<tr>
<td colspan="4">共<%= My.GetTotalNum %>條 每頁<%= My.GetiPageSize %>條 共<%= My.GetTotalPage %>頁 頁碼:<%= My.GetFenYeJmp(false) %></td>
</tr>
</table>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.