| 日期 |
IP访问量 |
浏览访问量 |
<%
dim zzday,stats
set rs=server.createobject("adodb.recordset")
sql="select top 10 * from zzday order by zzday desc"
rs.open sql,conn,1,3
if rs.eof and rs.bof then
response.write "暂时没有往日统计记录 "
end if
rs.movefirst
while not rs.eof
zzday=rs("zzday")
stats=rs("stats")
browser=rs("browser")
rs.movenext
%>
| <%=zzday%> |
<%=stats%> |
<%=browser%> |
<%wend%>
|