请大神们帮我检查一下错误,用asp实现模糊查询,查出来的结果是所有的,和输入的关键字一点关系都没有
wb.html页面:<formid="form1"name="form1"method="post"action="cx.asp"><imgsrc="images/sou...
wb.html页面:
<form id="form1" name="form1" method="post" action="cx.asp">
<img src="images/sou.gif" width="32" height="27" />
<input type="text" name="Keyword" id="sou" />
<input type="submit" name="button" id="button" value="搜索" />
<br />
<br />
注意:如果搜索的是任意关键字,那么出现的物品记录可能有多条。
</form>
cx.asp页面:
<body>
<table width="80%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td>物资名称</td>
<td>单位</td>
<td>盘点量</td>
<td>说明</td>
</tr>
<%
'连接数据库
Set con=Server.CreateObject("ADODB.Connection")
con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &Server.MapPath("MaterialStock.mdb")
Set rs=Server.CreateObject("ADODB.Recordset")
'查询数据库
Keyword= request.Form("Keyword")'要查询的名字
Sql="Select * From [xt_t_material_type] Where type_name Like '%"& Keyword &"%' Or remark Like '%"& Keyword &"%' "
rs.open sql,con,1,1
do while not rs.eof%>
<tr align="center">
<td><%=rs("type_name")%></td>
<td><%=rs("danwei")%></td>
<td><%=rs("shuliang")%></td>
<td><%=rs("remark")%></td>
</tr>
<%rs.movenext
loop
rs.close
%>
</table>
</body> 展开
<form id="form1" name="form1" method="post" action="cx.asp">
<img src="images/sou.gif" width="32" height="27" />
<input type="text" name="Keyword" id="sou" />
<input type="submit" name="button" id="button" value="搜索" />
<br />
<br />
注意:如果搜索的是任意关键字,那么出现的物品记录可能有多条。
</form>
cx.asp页面:
<body>
<table width="80%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td>物资名称</td>
<td>单位</td>
<td>盘点量</td>
<td>说明</td>
</tr>
<%
'连接数据库
Set con=Server.CreateObject("ADODB.Connection")
con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &Server.MapPath("MaterialStock.mdb")
Set rs=Server.CreateObject("ADODB.Recordset")
'查询数据库
Keyword= request.Form("Keyword")'要查询的名字
Sql="Select * From [xt_t_material_type] Where type_name Like '%"& Keyword &"%' Or remark Like '%"& Keyword &"%' "
rs.open sql,con,1,1
do while not rs.eof%>
<tr align="center">
<td><%=rs("type_name")%></td>
<td><%=rs("danwei")%></td>
<td><%=rs("shuliang")%></td>
<td><%=rs("remark")%></td>
</tr>
<%rs.movenext
loop
rs.close
%>
</table>
</body> 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏5(财富值+成长值)
若以下回答无法解决问题,邀请你更新回答
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询