asp随机从MDB数据库中读取一条记录并显示到网页上

2025-01-19 07:04:17
推荐回答(1个)
回答1:

nd是asp的一个随即函数,但是sql中并无此函数,故,你的这个sql语句是有问题的。
你可以这样写

<%
set rs=server.CreateObject("adodb.recordset")
rs.open "select top 1 id from url order by id desc",conn,1,1
if not rs.bof and not rs.eof then
maxid=rs("id")
rs.close

function suiji()
Randomize
suiji=Int((maxid - 1+ 1) * Rnd + 1)
end function

'然后开始随即提取记录
i=0
do while i<1
rs.open "select * from url where id="&suiji(),conn,1,1
if not rs.bof and not rs.eof then
i=i+1
response.write "你现在随即提取的记录的id是"&rs("id")
end if
rs.close
loop