用ASP如何 随机提取sql数据库记录

来源:百度知道 编辑:UC知道 时间:2024/05/08 20:07:24
有满意的答复,必有重谢500-600分,言而有信!

ASP 随机提取数据库记录

<!--#include file="数据库连接"-->
<%
"一个从数据库中随机读取纪录的例子
Set Rs1=server.CreateObject ("adodb.recordset")
Set Rs=server.CreateObject ("ADODB.RECORDSET")
SQL="Select id from Article order by id desc"
rs.Open sql,dataconn,1,1
If not rs.EOF then
total=rs("id") "取最大的ID
rs.Close
'定义随机数..
Randomize
R=Int((total - 1+ 1) * Rnd + 1)
SQL="Select id,content from Article where id="& R
rs.Open sql,dataconn,1,1
if not rs.EOF then
content=RS("content")
content=replace(content,chr(10),"<br>")
content=replace(content,chr(13),"<br>")
content=replace(content,"<br><br>","<br>")
Response.Write content
else
sql1="select content from