[求助]ASP模糊查询站内搜索不能用 WHY? 相关函数是否有错
一、我先把我的MDB的数据库截图上来:二、以下就是我的 “search.html”文件
-----------
<html><head><title>搜索页面</title></head>
<!--创建搜索表格-->
<center>
<form name="form" method="post" action="search.asp">
<input type="text" name="word" size="30">
<input type="submit" value="提交" name="B1">
<input type="reset" value="清除" name="B2">
</form>
<p> </p>
</center></div></form>
<hr width="600" align="center">
<html>
--------------
三、以下就是我的“search.asp”文件
--------------
<!--#INCLUDE file="ADOVBS.inc"-->
<% "建立数据库的连接
con="DBQ="+server.mappath("#data#base#.mdb")+";DefaultDir=;DIRVER={microsoft Access Driver(*.mdb)};"
"建立CONNECTION对象并打开数据库
set mycon=server.createobject("ADODB.CONNECTION")
mycon.open.con %>
"创建Recordset对象的例程,打开Recordset对象传递SQL串以及所有的连接信息
<% set rs=server.createobject("ADODB.Recordset")
rs.open "SELECT*FORM product where 商品名称 like '%'&request.form("word")&"%'",MyCon,adOpenStatie
%>
"建立查询后的显示信息和查询页面,你想取什么名字都可以
<html><head><title>查询结果</title></head>
<body bgcolor="#ffffff">
<p align="center"><br>
"统计查询共有<% Response.Write(RS.RecordCount) %>条纪录</p><br>
<div align="center"><center>
<table width="80%" border="1" align="center" bordercolor="000000" bordercolordark="#ffffff" berdorcoorlight="#000000">
<tr align="center">
<td width="20%" align="center" bgcolor="#ffffff">ID</td>
<td width="60%" align="center" bgcolor="#ffffff">主题</td>
<td width="20%" align="center" bgcolor="#ffffff">查看</td></table>
<table width="80%" border="1" align="center" bordercolor="000000" bordercolordark="#ffffff" berdorcoorlight="#000000">
<tr align="center">
<!--从数据库提取信息-->
<% while not rs.eof %>
<tr align="center">
<td width="20%" align="center" bgcolor="#ffffff"><% =rs("id") %></td>
<td width="60%" align="center" bgcolor="#ffffff"><% =rs("商品名称") %></td>
<td width="20%" align="center" bgcolor="#ffffff">GO</a></td>
<% rs.movenext %></tr> <% wend %></table></center></div><% rs.close %>
<% mycon.close %>
"关闭链接
</body></html>
======================================
以上代码也是从网上找的,由于我也太懂。。。请大哥大姐们指点一下!谢谢了!我的目的就是查询:商品名称 来进行模糊查询可以了。