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
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
Want To Be A Web Master?
If you want to be a Web Master, you will have to host your web site with an ISP (Internet Service Provider).
MaximumASP offers seven different configurations of dedicated servers to meet your Windows and .NET hosting needs.
Hosted on our multi-tiered Enterprise Class network, these servers provide the performance, security and reliability
you need to host your high end web sites and applications.
Visit MaximumASP
|