我把我的代码贴出来,帮忙看一下吧
<td height="30" width="40%" align="center"><span class="style2">日期</span></td>
<td width="60%" align="center"><span class="style2">流量统计</span></td>
</tr>
<%
syear=request("syear")
smonth=request("smonth")
if syear="" then
syear=year(date)
end if
if smonth="" then
smonth=month(date)
end if
i=syear&"-"&smonth&"-1"
do while month(i)=smonth
sql="select count(*) from BusinessHallMtLog
where year(datetime)='"&year(i)&"' and month(datetime)='"&month(i)&"' and day(datetime)='"&day(i)&"'"
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,3
%>
<tr align="center"
class="a3">
<td height="30" width="334" align="center"><%=year(i)%>年<%=month(i)%>月<%=day(i)%>日</td>
<td align="center"><%=Rs(0)%></td>
</tr>
<%
i=DateAdd("d",1,i) '当前的日期加一天
loop
rs.close
%>
我是做了一个当我选定一个月份,就把这个月份的每一天的流量都显示出来,用了一个循环,统计起来好慢
[此贴子已经被作者于2005-9-13 10:16:58编辑过]