ASP Recordset 分页显示数据的方法(修正版)

时间:2021-01-03 00:53:41
【文件属性】:
文件名称:ASP Recordset 分页显示数据的方法(修正版)
文件大小:37KB
文件格式:PDF
更新时间:2021-01-03 00:53:41
AS asp c 1.建立Recordset对象 代码如下: Dim objMyRst Set objMyRst=Server.CreateObject(“ADODB.Recordset”) objMyRst.CursorLocation=adUseClientBatch ‘客户端可批量处理 objMyRst.CursorType=adOpenStatic’光标类型为静态类型 注意:Recordset对象不能用Set objMyRst=Connection.Excute strSQL的语句建立,因为其建立的Recordset对象为adOpenFowardOnly不支持记录集分页 2.打开Recordset对

网友评论