asp读取数据库无法显示数据 在线等!~~~~~ 代码如下:

<%dima,bb=rs("room_id")a=split(b,",")foreachiinasetrs_top=server.CreateObject("adodb.... <% dim a,b
b= rs("room_id")
a=split(b,",")

for each i in a
set rs_top=server.CreateObject("adodb.recordset")
rs_top.open "select * from hotel_price where id="&cint(i)
rs_top.open sql,conn,1,1
if rs_top.eof and rs_top.bof then
response.write "无"
else
%>
<%=rs_top("name")%>
<%
end if
next%>
展开
 我来答
东方行
2011-12-23 · 超过85用户采纳过TA的回答
知道小有建树答主
回答量:270
采纳率:0%
帮助的人:195万
展开全部
room_id 全部是数字?
<%
Dim a,b
b= rs("room_id")
a = Split(b,",")
For i=0 To UBound(a)-1
Set rs_top=server.CreateObject("adodb.recordset")
sql = "select * from hotel_price where id="&CInt(a(i))
rs_top.open sql,conn,1,1
if rs_top.eof and rs_top.bof Then
response.write "无"
Else
response.write rs_top("name")
End If
Next
'---------------
'room_id提交过来的为数字
b= rs("room_id")
a = replace(b,",",",")
Set rs_top=server.CreateObject("adodb.recordset")
sql = "select * from hotel_price where id in ("&a&")"
rs_top.open sql,conn,1,1
if rs_top.eof and rs_top.bof Then
response.write "无"
Else
Do While Not rs_top.EOF
response.write rs_top("name")&"<br>"
rs_top.MoveNext
Loop
End If
%>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式