分页显示的问题
错误类型: ADODB.Recordset (0x800A0CB3) /ASP/index.asp, 第 27 行 ( 即 rs.AbsolutePage = CInt(currentPage) )
是什么错误???
那位高手给我们讲讲分页显示的使用吧
我参考的书上讲的太少了
谢谢了!!!

<!--#include virtual = "/adovbs.inc" --> dim currentPage,rowCount,i currentPage =request.Querystring("currentPage") if crrentPage = "" then currentPage = 1 end if
dim cnn set cnn= server.createObject("ADODB.Connection") cnn.open "provider=Microsoft.JET.OLEDB.4.0; DATA SOURCE= " & Server.mapPath("Data/bingxue.mdb")
dim rs set rs = server.createObject("ADODB.recordset")
dim sql sql="select * from topices"
rs.CursorType = adOpenStatic rs.PageSize = 15 rs.open sql ,cnn