asp随机从MDB数据库中读取一条记录并显示到网页上
发布网友
发布时间:2022-04-09 23:38
我来回答
共1个回答
热心网友
时间:2022-04-10 01:07
nd是asp的一个随即函数,但是sql中并无此函数,故,你的这个sql语句是有问题的。
你可以这样写
<!-- #include file="conn.asp" -->
<%
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