谁帮我做个ASP关键字所搜页面
我的数据库结构是这样的数据库名yyk.mdb要查询的表是jibingjibing的结构是这样的id自动编号name备注gaishu备注bingyin备注neibie文本我...
我的数据库结构是这样的 数据库名yyk.mdb 要查询的表是jibing
jibing 的结构是这样的
id 自动编号
name 备注
gaishu 备注
bingyin 备注
neibie 文本
我要这个页面表单可以通过输入关键字查询 name 和gaishu 这2个字段的包含这个关键字 的所有信息。页面美化我来做,各位只要帮我些出大概代码就行了 感激不尽啊!!!!!!!!!!!! 展开
jibing 的结构是这样的
id 自动编号
name 备注
gaishu 备注
bingyin 备注
neibie 文本
我要这个页面表单可以通过输入关键字查询 name 和gaishu 这2个字段的包含这个关键字 的所有信息。页面美化我来做,各位只要帮我些出大概代码就行了 感激不尽啊!!!!!!!!!!!! 展开
2个回答
2008-11-29
展开全部
<!--#include file="资料库连接页面.asp"-->
<meta http-equiv=content-type content="text/html;charset=big5">
<form name=form1 method=post action="">
请输入所查询关键字:<input name=keyword type=text size=15>
<input name=submit type=submit value=查询>
</form>
<%
keyword=request("keyword")
set rs=server.createobject("adodb.recordset")
sql="select * from jibing where name like'%"&keyword&"%' or gaishu like'%"&keyword&"%' order by id desc"
rs.open sql,conn,1,1
do while not rs.eof
response.write rs("name")&rs("gaishu")&rs("neibie")&"..."
rs.movenext
if rs.eof then exit do
loop
rs.close
set rs=nothing
%>
<meta http-equiv=content-type content="text/html;charset=big5">
<form name=form1 method=post action="">
请输入所查询关键字:<input name=keyword type=text size=15>
<input name=submit type=submit value=查询>
</form>
<%
keyword=request("keyword")
set rs=server.createobject("adodb.recordset")
sql="select * from jibing where name like'%"&keyword&"%' or gaishu like'%"&keyword&"%' order by id desc"
rs.open sql,conn,1,1
do while not rs.eof
response.write rs("name")&rs("gaishu")&rs("neibie")&"..."
rs.movenext
if rs.eof then exit do
loop
rs.close
set rs=nothing
%>
展开全部
获取的关键字的变量是keyword
name的记录
sql="select * from jibing where name like '"&keyword&"'"
查找jibing表里name包含获取来关键字的记录
下面一样的
sql="select * from jibing where gaishu like '"&keyword&"'"
查找jibing表里gaishu包含获取来关键字的记录
name的记录
sql="select * from jibing where name like '"&keyword&"'"
查找jibing表里name包含获取来关键字的记录
下面一样的
sql="select * from jibing where gaishu like '"&keyword&"'"
查找jibing表里gaishu包含获取来关键字的记录
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询