asp 前台根据数据库时间提取显示信息
<% id=request.QueryString("id")
if id="" then
Response.Write "<script>alert('参数错误1!');history.go(-1);</script>"
Response.End()
end if
exec="select * from che where fabudata=>#"&now()&"# and id="&id
set rs=server.createobject("adodb.recordset")
rs.open exec,conn,1,1
if rs.eof and rs.bof then
Response.Write "<script>window.location.href='../index.asp';</script>"
Response.End()
end if
%>
数据库是这个样的 id fabudate 等等
比如以有条数据时是:
id 1000
fabudate 2012-9-11 下午 04:04:50
今天是时间是:2012-9-12 上午 11:04:50
这条数据就应该在前台查询显示了
请我兄弟们我上面写的fabudata=>#"&now()&"# 这个根本行不通怎么回事
求指教
[ 本帖最后由 wutengchu 于 2012-9-12 17:33 编辑 ]