asp搜索access数据库like用法
<%id=Request.QueryString("id")keyword=Request.Form("keyword")Ifid=""andkeyword=""Then...
<%
id=Request.QueryString("id")
keyword=Request.Form("keyword")
If id="" and keyword="" Then
Response.Write("<script language='javascript'>history.back();</script>")
End IF
sqlstr="select id,Gname,Gmprice,Ggprice,Gintro from tab_goods where 1=1"
If keyword<>"" Then sqlstr=sqlstr&" and Gname like '%"&keyword&"%'"
If id<>"" and IsNumeric(id) Then sqlstr=sqlstr&" and id="&id&""
Set rs=conn.Execute(sqlstr)
If rs.eof or rs.bof Then
Response.Write("<tr><td height='22' colspan='2'>暂无收藏!</td></tr>")
Else
%>
以上代码对关键字进行搜索(这样的商品有好几个),可是搜索过后却只能显示一个。
请高手指点,小女子菜鸟一个啊! 展开
id=Request.QueryString("id")
keyword=Request.Form("keyword")
If id="" and keyword="" Then
Response.Write("<script language='javascript'>history.back();</script>")
End IF
sqlstr="select id,Gname,Gmprice,Ggprice,Gintro from tab_goods where 1=1"
If keyword<>"" Then sqlstr=sqlstr&" and Gname like '%"&keyword&"%'"
If id<>"" and IsNumeric(id) Then sqlstr=sqlstr&" and id="&id&""
Set rs=conn.Execute(sqlstr)
If rs.eof or rs.bof Then
Response.Write("<tr><td height='22' colspan='2'>暂无收藏!</td></tr>")
Else
%>
以上代码对关键字进行搜索(这样的商品有好几个),可是搜索过后却只能显示一个。
请高手指点,小女子菜鸟一个啊! 展开
2个回答
展开全部
'改下你的判断模式
'这里使用一个变量进行数据计数。
My_Count=0
Set rs=conn.Execute(sqlstr)
'注意这里
Do While Not(rs.eof or rs.bof)
'下面是你显示记录的部分
'
'更新计数器
My_Count=My_Count+1
Rs.MoveNext
Loop
Set Rs=Nothing
'判断记录数量
If My_Count=0 Then
Response.Write("<tr><td height='22' colspan='2'>暂无收藏!</td></tr>")
End If
'这里使用一个变量进行数据计数。
My_Count=0
Set rs=conn.Execute(sqlstr)
'注意这里
Do While Not(rs.eof or rs.bof)
'下面是你显示记录的部分
'
'更新计数器
My_Count=My_Count+1
Rs.MoveNext
Loop
Set Rs=Nothing
'判断记录数量
If My_Count=0 Then
Response.Write("<tr><td height='22' colspan='2'>暂无收藏!</td></tr>")
End If
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询