主页 > 知识库 > asp下实现记录集内随机取记录的代码

asp下实现记录集内随机取记录的代码

热门标签:滴滴地图标注上车点 无营业执照地图标注教学 高质量的电销外呼系统 地图标注还可以做吗 电销机器人采购 外呼系统怎么话费 硅基电话机器人加盟 宿州防封外呼系统平台 友邦互联电销机器人违法吗
记录集内随机取记录的代码


' Moving to random record - Steven Jones' Extension
If Not(记录集名称.bof and 记录集名称.eof) Then
' reset the cursor to the beginning
If (记录集名称.CursorType > 0) Then
记录集名称.MoveFirst
Else
记录集名称.Requery
End If

记录集名称_totalrn = -1
记录集名称_totalrn = 记录集名称.RecordCount ' ony works on some recordsets, but much faster
If (记录集名称_totalrn = -1) Then ' and if it didn't work, we still have to count the records.

' count the total records by iterating through the recordset
记录集名称_totalrn=0
While (Not 记录集名称.EOF)
记录集名称_totalrn = 记录集名称_totalrn + 1
记录集名称.MoveNext
Wend

' reset the cursor to the beginning
If (记录集名称.CursorType > 0) Then
记录集名称.MoveFirst
Else
记录集名称.Requery
End If

End If

' now do final adjustments, and move to the random record 
记录集名称_totalrn = 记录集名称_totalrn - 1
If 记录集名称_totalrn > 0 Then
Randomize
记录集名称.Move Int((记录集名称_totalrn + 1) * Rnd)
End If 
End If
' all done; you should always check for an empty recordset before displaying data
%> 

  

标签:七台河 宣城 儋州 江门 锡林郭勒盟 新余 雅安 广元

巨人网络通讯声明:本文标题《asp下实现记录集内随机取记录的代码》,本文关键词  asp,下,实现,记录,集内,随机,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《asp下实现记录集内随机取记录的代码》相关的同类信息!
  • 本页收集关于asp下实现记录集内随机取记录的代码的相关信息资讯供网民参考!
  • 推荐文章