asp用<%=rs("Title")%>显示access数据库中的内容 30
我用asp,在网页上连接数据库都会,就是返回内容的时候,<%=rs("Title")%>只显示一行的内容。数据库中其他行该如何调用?比如我表中数据两行,字段是:title...
我用asp,在网页上连接数据库都会,就是返回内容的时候,<%=rs("Title")%>只显示一行的内容。数据库中其他行该如何调用?比如我表中数据两行,字段是:title,返回最后一行用<%=rs("Title")%>,返回第一行的title改怎么写?关键是我需要在网页多个地方用到。跪求大神给我解答。真心给分。
展开
2个回答
展开全部
<%
set rs = server.CreateObject("adodb.recordset")
rs.open "select * from 表名 order by id desc",conn,1,1
if rs.eof and rs.bof then
response.Write "还没有内容"
else
do while not rs.eof
response.Write rs("title")&"<br>"
rs.movenext
loop
rs.close
set rs = nothing
end if %>
以上有多少显多少
rs.open "select top 2 * from 表名 order by id desc",conn,1,1
则只显示2条,更改top 2 为几,就显示几条
set rs = server.CreateObject("adodb.recordset")
rs.open "select * from 表名 order by id desc",conn,1,1
if rs.eof and rs.bof then
response.Write "还没有内容"
else
do while not rs.eof
response.Write rs("title")&"<br>"
rs.movenext
loop
rs.close
set rs = nothing
end if %>
以上有多少显多少
rs.open "select top 2 * from 表名 order by id desc",conn,1,1
则只显示2条,更改top 2 为几,就显示几条
Storm代理
2023-08-29 广告
2023-08-29 广告
"StormProxies是全球大数据IP资源服务商,其住宅代理网络由真实的家庭住宅IP组成,可为企业或个人提供满足各种场景的代理产品。点击免费测试(注册即送1G流量)StormProxies有哪些优势?1、IP+端口提取形式,不限带宽,I...
点击进入详情页
本回答由Storm代理提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询