ASP查询遍历错误 求高手大大们帮忙
<%
str_left=""
sql="select * from WebGoodSiteType_Main"
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
if rs.eof and rs.bof then
str_left="没有内容"
else
i=1
do while not rs.eof
str_left=str_left&"<tr><td height='29' bgcolor='#E1F2D7'>"&rs("Type_Name")&"</td><td height='29' bgcolor='#E1F2D7'>"&rs("Type_Color")&"</td><td width='206' bgcolor='#E1F2D7'>修改 | 删除</td></tr>"
if (i mod 14)=0 and rs.recordcount<>i then
str_left=str_left&"<hr class=cg>"
end if
i=i+1
rs.movenext
loop
end if
rs.close
set rs=nothing
response.write trim(str_left)
%>
补充:表里有4条数据 其余两条用不到 使用的是access数据库
不行啊
追问:找到了 忘记导入公用的数据库连接表达式 嘿嘿 不过谢谢你