搜索问题
_______________ ________|____title______| ○ 1 ⊙ 2 |_搜索__|
比如数据库中的表2中有
title content
1 123木头人
1 16549
1 7897
1 54564
1 454565
搜索后只出现 123木头人字段 ,后面的就不出来,这是为什么?我想把后面的也显示出来
那要怎么做?
<%
set rsb=server.CreateObject("adodb.recordset")
if request("title")="1" then
sqlb="select * from Products where title='"&request.form("title1")&"'"
else
sqlb="select * from news where title='"&request.form("title1")&"'"
end if
rsb.open sqlb,conn,1,1
if rsb.eof then
Response.Write"<script>alert('对不起,没有相关资料');window.location='index.asp'</script>"
response.End()
else
%>
<table width="982" height="65" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><%=rsb("contnet")%></td>
<td></td>
</tr>
</table>
<%
rsb.movenext
end if
rsb.close
set rsb=nothing
%>
这是我做的搜索,只能查到头一个 后面的就查不到...
[[it] 本帖最后由 kgdipbyve 于 2008-7-26 17:54 编辑 [/it]]