主题:  如何建立查询系统??

文远

职务:普通成员
等级:5
金币:1.0
发贴:2441
#12003/3/28 15:29:14
我想以标题 内容 和时间三个要素建立查询系统
如何建立三着之间的联系呢?
希望有查询的原代码提供 谢谢!·



沉默是金

职务:普通成员
等级:6
金币:11.2
发贴:4357
#22003/3/28 16:35:08
<%
        dim u_title,u_time,u_body
        u_title=trim(request.Form("u_title"))
        u_body=trim(request.Form("u_body"))
        u_time=trim(request.form("u_time"))
        %>
        <%
dim rs,sql
set rs=Server.CreateObject("ADODB.Recordset")
sql="select * from u_masg where u_title='"&u_title&"'"
if u_body<>"" then
sql=sql & " and u_title like '%"&u_body&"%' "
sql=sql &" or u_body like '%"&u_body&"%'"
end if
if u_time<>"00" then
sql=sql & " and u_time>='" & dateadd("d",-cint(u_time),date()) & "'"
end if
sql=sql & " order by id desc"
rs.open sql,cn,1,1
if rs.recordcount<1 then
response.write "
暂时还没有你要查询的信息
"
else
……
end if
%>

编辑历史:[这消息被arhui编辑过(编辑时间2003-03-28 16:36:04)]

难人一个……