asp+access 的站内搜索问题
想在网站里做个搜索功能下面的是搜索提交页<formaction="sou.asp"method="post">搜索:<inputname="Search"type="te...
想在网站里做个搜索功能下面的是搜索提交页
<form action="sou.asp" method="post">
搜索:<input name="Search"type="text">
<input name="otype" type="submit" value="搜索">
</form>
数据库表名:Download
搜索表里的标题:Title
请用我的关键字写程序
还有搜索结果显示如何实现?
高手帮帮忙吧~谢谢了 展开
<form action="sou.asp" method="post">
搜索:<input name="Search"type="text">
<input name="otype" type="submit" value="搜索">
</form>
数据库表名:Download
搜索表里的标题:Title
请用我的关键字写程序
还有搜索结果显示如何实现?
高手帮帮忙吧~谢谢了 展开
2个回答
展开全部
sou.asp页面代码如下:
<!--#include file="conn.asp"--><!--数据库连接文件 -->
<%set rs=server.CreateObject("adodb.recordset")
sql="select * from Download where Title like '%"&request("Search")&"%'"'按关键字查询
rs.open sql,conn,1,1
if rs.bof and rs.eof then
Response.Write("没有找到你要搜索的关键字!")
Response.End
end if
do while rs.eof<>true'循环显示搜索结果
Response.Write(""&rs("Title")&"<br>")
rs.movenext
loop
rs.close
set rs=nothing'释放内存%>
都是缘交友网http://www.dsyuan.cn 欢迎合作!!
<!--#include file="conn.asp"--><!--数据库连接文件 -->
<%set rs=server.CreateObject("adodb.recordset")
sql="select * from Download where Title like '%"&request("Search")&"%'"'按关键字查询
rs.open sql,conn,1,1
if rs.bof and rs.eof then
Response.Write("没有找到你要搜索的关键字!")
Response.End
end if
do while rs.eof<>true'循环显示搜索结果
Response.Write(""&rs("Title")&"<br>")
rs.movenext
loop
rs.close
set rs=nothing'释放内存%>
都是缘交友网http://www.dsyuan.cn 欢迎合作!!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询