asp实现记录集内随机取记录的具体代码内容

来源:爱站网时间:2021-04-28编辑:网友分享
对于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小偷程序入门教程的具体代码内容

下一篇:向数据库中增加一条记录应该用Command对象还是用RecordSet对象

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载