改成下面的還是一樣沒有返回值。
function dnz2()
sql="Select count(party_id) from party where 0<DateDiff('m',datetime,now)<1"
set ips=conn.execute(sql)
dnz2=ips(0)
ips.close
set ips=nothing
end function
[此贴子已经被作者于2006-1-21 16:59:43编辑过]
兄弟,我按你的方法做了,但還是沒有顯示
我用這種方法就OK了
function dnz2()
sql="Select count(*) from party where star_time between #2006/01/01# and #2006/01/31#"
set ips=conn.execute(sql)
dnz2=ips(0)
ips.close
set ips=nothing
end function
現在的問題是怎么取得,#2006/01/01#與#2006/01/31# ,如果我要統計本天的,我應該怎么寫
數據庫中 star_time 的格式為2006/01/21 17:13:00,也就是說我要怎么樣取得 star_time中的日期= 今天的日期。
[此贴子已经被作者于2006-1-21 17:18:53编辑过]
<%
startDate=year(now)&"-"&month(now)&"-"&"1"
endDate=DateAdd("m", 1, startDate)
sql="Select count(*) as n from party where star_time between #"&startDate&"# and #"&endDate&"#"
response.Write(sql&"<p>")
rs.open sql,conn,1,1
if not rs.eof then response.Write(rs("n"))
%>
然后我直接這樣
function dnz2()
startDate=year(now)&"-"&month(now)&"-"&"1"
endDate=DateAdd("m", 1, startDate)-1
sql="Select count(*) from party where star_time between #"&startDate&"# and #"&endDate&"#"
set ips=conn.execute(sql)
dnz2=ips(0)
ips.close
set ips=nothing
end function
調用dnz2就OK了。
[此贴子已经被作者于2006-1-23 8:54:13编辑过]