[精]用ACCESS搜索的问题
下面是我的ASP代码,为什么我只能搜索到第一个数据库里的信息,而后面的信息却不能搜索出来?哪位朋友可以给我解答下,小弟在此先些过了,在线等答案 ^_^!!!<%
const adopenstatic=3
const adlockreadonly=1
const adcmdtable=2
news=Request.Form("news")
strconn="provider=microsoft.jet.oledb.4.0;data source=C:\Inetpub\wwwroot\lb\db1.mdb;persist security info=false"
set strrs=Server.CreateObject("adodb.recordset")
strrs.Open"lxr",strconn,3,1,2
news="地址='"&news&"'"
strrs.Find news
if strrs.EOF then
Response.Write"没有"
else
Response.Write "<a href='"&strrs("url")&"'>"&strrs("名字")&"</a><br>"
strrs.MoveNext
End if
strrs.Close
set strsr=nothing
%>