Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

ADO PageCount Property


❮ Complete Recordset Object Reference

The PageCount property returns a long value that indicates the number of pages with data in a Recordset object.

Tip: To divide the Recordset into a series of pages, use the PageSize property.

Note: If the last page contains fewer records than specified in PageSize, it still counts as an additional page in the PageCount property.

Note: If this method is not supported it returns -1.


Syntax

objRecordset.PageCount

Example

<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open(Server.Mappath("northwind.mdb"))

set rs=Server.CreateObject("ADODB.recordset")
sql="SELECT * FROM Customers"
rs.Open sql,conn

rs.PageSize=5

i=rs.PageCount
response.write("The number of pages in RS=" & i)

rs.Close
conn.Close
%>

❮ Complete Recordset Object Reference