• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

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

asp 搞代码 4年前 (2022-01-03) 20次浏览 已收录 0个评论

<%
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) or Len(iOffset) = 0 then
iOffset = 30
else
iOffset = Cint(iOffset)
end if

Response.Write “Viewing ” & iOffset & ” records starting at record ” & iStart & “

Dim objConn, objRS
Set objConn = Server.CreateObject(“ADODB.Connection”)
‘objConn.Open “DSN=MP3”
dim connstr
dim db
db=”csnjimageman.mdb”
connstr=”Provider=Microsoft.Jet.OLEDB.4.0;Data Source=” & Server.MapPath(“”&db&””)
objconn.Open connstr

Set objRS = Server.CreateObject(“ADODB.Recordset”)
objRS.Open “SELECT * FROM imageinfo”, objConn

Dim aResults
aResults = objRS.GetRows

objRS.Close
Set objRS = Nothing

objConn.Close
Set objConn = Nothing

Dim iRows, iCols, iRowLoop, iColLoop, iStop
iRows = UBound(aResults, 2)
iCols = UBound(aResults, 1)

If iRows > (iOffset + iStart) Then
iStop = iOffset + iStart – 1
Else
iStop = iRows
End If

For iRowLoop = iStart to iStop
For iColLoop = 0 to iCols
Response.Write aResults(iColLoop, iRowLoop) & ” ”
Next
Response.Write “

Next 

Response.Write “


if iStart > 0 then
‘Show Prev link
Response.Write “”&Offset=” & iOffset & “””>Previous ” & iOffset & “”
end if

if iStop < iRows then
‘Show Next link
Response.Write ” “&Offset=” & iOffset & “””>Next ” & iOffset & “”
end if
%> 

  

以上就是asp中通过ge

来源gao!%daima.com搞$代*!码网

trows实现数据库记录分页的一段代码的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:asp中通过getrows实现数据库记录分页的一段代码

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址