1. 首页
  2. 数据库
  3. 其它
  4. asp中通过getrows实现数据库记录分页的一段代码

asp中通过getrows实现数据库记录分页的一段代码

上传者: 2021-01-04 01:07:38上传 PDF文件 19.96KB 热度 11次
<%@ Language = VBSCRIPT %> <% Option Explicit %> <% rem 在asp中通过getrows实现数据库记录分页的一段代码 Dim iStart, iOffset iStart = Request(“Start”) iOffset = Request(“Offset”) if Not IsNumeric(iStart) or Len(iStart) = 0 then iStart = 0 else iStart = CInt(iStart) end if if Not IsNumeric(iOffset)
用户评论