• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

ASP分页显示Recordset数据

发布: 2007-6-30 18:56 | 作者: admin | 来源: | 查看: 21次 | 进入软件测试论坛讨论

领测软件测试网

  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对象

Dim strSql

strSql=”select * from ietable”

objMyRst.Oepn strSql,ActiveConnection,,,adCmdText

  3.设置Recordset的PageSize属性

objMyRst.PageSize=20

默认的PageSize为10

  4.设置Recordset的AbsolutePage属性

Dim intCurrentPage

intCurrentPage=1

objMyRst.AbsolutePage=intCurrentPage

AbsolutePage为1到Recordset对象的PageCount值

  5.显示数据

  Response.Write("<table>")      

  PrintFieldName(objMyRst)      

  For i=1 To objMyRst.PageSize

          PrintFieldValue(objMyRst)

          objMyRst.MoveNext

          If objMyRst.Eof Then Exit For

  Next

  Response.Write("</table>")

  说明:

  1.adOpenStatic,adUseCilentBatch,adCmdText为adovbs.inc定义的常量,要使用的话要把adovbs.inc拷到当前目录中并包含于在程序中

<!--#Include File=”adovbs.inc”-->

  2.PrintFielName,PrintFieldValue函数的代码如下:

<%

Function PrintFieldName(objMyRst)

        "参数objMyRst是Recordset对象

        "定义娈数

        Dim objFld      

        Response.Write "<tr  bgcolor="#CCCCCC">"

        For Each objFld In objMyRst.Fields

                Response.Write "<td>" & objFld.Name & "</td>"

        Next

        Response.Write("</tr>")  

End Function

Function PrintFieldValue(objMyRst)

        "参数objMyRst是Recordset对象

        "定义娈数

        Dim objFld

        Response.Write("<tr >")

        For Each objFld  In objMyRst.Fields

                "Response.Write "<td>" & objMyRst.Fields(intLoop).value & "</td>"

                Response.Write "<td>" & objFld.value & "</td>"

        Next        

        Response.Write("<tr>")   

End Function

%>

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网