alldata=""
set test=conn.execute("select top 5 id,title from news")
'取多少条记录,上面top 5已经取5条了,所以这里100也只能取5条数据
if not test.eof then alldata=test.getrows(100)
set test=nothing
'列出记录
if isArray(alldata) then
'所有行(记录数)
allhang=ubound(alldata,2)
for i=0 to allhang
id=alldata(0,i)
title=alldata(1,i)
response.write id&","&title&"<BR>"
next
end if
其实此方法还有一个其它方面的好处,从代码上看,它将数据保存到alldata变量里了,所以,同一页面中可以重复调用它。
set test=conn.execute("select top 5 id,title from news")
'取多少条记录,上面top 5已经取5条了,所以这里100也只能取5条数据
if not test.eof then alldata=test.getrows(100)
set test=nothing
'列出记录
if isArray(alldata) then
'所有行(记录数)
allhang=ubound(alldata,2)
for i=0 to allhang
id=alldata(0,i)
title=alldata(1,i)
response.write id&","&title&"<BR>"
next
end if
其实此方法还有一个其它方面的好处,从代码上看,它将数据保存到alldata变量里了,所以,同一页面中可以重复调用它。