📄 visit_hoursstatistic.asp
字号:
<% Option Explicit %>
<!--#include file="../../../Inc/Const.asp" -->
<!--#include file="../../../Inc/Cls_DB.asp" -->
<%
'==============================================================================
'软件名称:风讯网站信息管理系统
'当前版本:Foosun Content Manager System(FoosunCMS V3.2SP1)
'最新更新:2006.50
'==============================================================================
'Copyright (C) 2002-2004 Foosun.Net All rights reserved.
'商业注册联系:028-85098980-601,项目开发:028-85098980-606、609,客户支持:608
'产品咨询QQ:394226379,159410,125114015
'技术支持QQ:315485710,66252421
'项目开发QQ:415637671,655071
'程序开发:四川风讯科技发展有限公司(Foosun Inc.)
'Email:service@Foosun.cn
'MSN:skoolls@hotmail.com
'论坛支持:风讯在线论坛(http://bbs.foosun.net)
'官方网站:www.Foosun.cn 演示站点:test.cooin.com
'网站通系列(智能快速建站系列):www.ewebs.cn
'==============================================================================
'免费版本请在程序首页保留版权信息,并做上本站LOGO友情连接
'风讯公司保留此程序的法律追究权利
'如需进行2次开发,必须经过风讯公司书面允许。否则将追究法律责任
'==============================================================================
Dim DBC,Conn
Set DBC = New DataBaseClass
Set Conn = DBC.OpenConnection()
Set DBC = Nothing
%>
<!--#include file="../../../Inc/Session.asp" -->
<!--#include file="../../../Inc/CheckPopedom.asp" -->
<%
if Not JudgePopedomTF(Session("Name"),"P080504") then Call ReturnError1()
%>
<html>
<head>
<title>24小时信息统计</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<link href="../../../CSS/FS_css.css" rel="stylesheet">
<body bgcolor="#FFFFFF" topmargin="2" leftmargin="2">
<table height="26" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="28" class="ButtonListLeft"><div align="center"><strong>24小时信息统计</strong></div></td>
</tr>
</table>
<%
Dim RsHourObj,Sql
Set RsHourObj = Server.CreateObject(G_FS_RS)
Dim MaxVisitCount,VisitTime,VisitHour,CurrentHour
CurrentHour=hour(now())
If IsSqlDataBase=0 then
Sql="Select VisitTime From FS_FlowStatistic where DATEDIFF('h',VisitTime,Now()) < 24 And DATEDIFF('h',VisitTime,Now()) >=0 "
Else
Sql="Select VisitTime From FS_FlowStatistic where DATEDIFF(hour,VisitTime,GetDate()) < 24 And DATEDIFF(hour,VisitTime,GetDate()) >=0 "
End If
RsHourObj.Open Sql,Conn,3,3
MaxVisitCount=0
Dim VisitCount(23),I
for I=0 To 23
VisitCount(I)=0
next
Do While not RsHourObj.Eof
VisitTime = RsHourObj("VisitTime")
VisitHour = Hour(VisitTime)
for I=0 To 23
if I=VisitHour then
VisitCount(I)=VisitCount(I)+1
end if
next
RsHourObj.MoveNext
Loop
for I=0 To 23
if VisitCount(I)>=MaxVisitCount then
MaxVisitCount=VisitCount(I)
end if
next
%>
<%
Dim VisitSize(23)
For I=0 To 23
if MaxVisitCount<>0 then
VisitSize(I)=100*VisitCount(I)/MaxVisitCount
else
VisitSize(I)=0
end if
Next
%>
<table border=0 align="center" cellpadding=2>
<tr>
<td align=center>最近24小时统计图表</td>
</tr>
<tr>
<td align=center><table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table border=0 align=center cellpadding=0 cellspacing=0>
<tr>
<td height="25" valign=top align="right" nowrap> <% Response.Write(MaxVisitCount&"次")%>
</td>
</tr>
<tr>
<td height="25" valign=top align="right" nowrap>
<% if MaxVisitCount>3 then
Response.Write(Round(MaxVisitCount*0.75)&"次")
elseif MaxVisitCount>1 then
Response.Write((MaxVisitCount-1)&"次")
else Response.Write(" ")
end if
%>
</td>
</tr>
<tr>
<td height="25" valign=top align="right" nowrap>
<% if MaxVisitCount>3 then
Response.Write(Round(MaxVisitCount*0.5)&"次")
elseif MaxVisitCount>2 then
Response.Write((MaxVisitCount-2)&"次")
else Response.Write(" ")
end if
%>
</td>
</tr>
<tr>
<td height="25" valign=top align="right" nowrap>
<% if MaxVisitCount>3 then
Response.Write(Round(MaxVisitCount*0.25)&"次")
else Response.Write(" ")
end if
%>
</td>
</tr>
<tr>
<td height="31" valign=top align="right" nowrap>0次</td>
</tr>
</table></td>
<td valign="bottom">
<table align=center>
<tr valign=bottom >
<% For I=CurrentHour+1 To 23 %>
<td width="15" align=center nowrap background=../../Images/Visit/tu_back.gif><img src=../../Images/Visit/bar.gif width="15" height="<% =VisitSize(I) %>" id=htav><br>
<% = I%>
</td>
<% Next %>
<% For I=0 To CurrentHour %>
<td width="15" align=center nowrap background=../../Images/Visit/tu_back.gif><img src=../../Images/Visit/bar.gif width="15" height="<% =VisitSize(I) %>" id=htav><br>
<% = I%>
</td>
<% Next %>
<td>单位(点)</td>
</tr>
</table></td>
</tr>
</table> </td>
</tr>
</table>
<p> </p>
<%
Dim RsHoursObj
Set RsHoursObj = Server.CreateObject(G_FS_RS)
Sql="Select VisitTime From FS_FlowStatistic"
RsHoursObj.Open Sql,Conn,3,3
MaxVisitCount=0
for I=0 To 23
VisitCount(I)=0
next
Do While not RsHoursObj.Eof
VisitTime = RsHoursObj("VisitTime")
VisitHour = Hour(VisitTime)
for I=0 To 23
if I=VisitHour then
VisitCount(I)=VisitCount(I)+1
end if
next
RsHoursObj.MoveNext
Loop
for I=0 To 23
if VisitCount(I)>=MaxVisitCount then
MaxVisitCount=VisitCount(I)
end if
next
%>
<%
Dim VisitsSize(23),AllCount
AllCount=0
For I=0 To 23
Allcount=AllCount+VisitCount(I)
Next
For I=0 To 23
if VisitCount(I)<>0 then
VisitsSize(I)=100*VisitCount(I)/AllCount
else
VisitsSize(I)=0
end if
Next
%>
<table border=0 align="center" cellpadding=2>
<tr>
<td align=center>访问量24小时分配图表</td>
</tr>
<tr>
<td align=center><table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table border=0 align=center cellpadding=0 cellspacing=0>
<tr>
<td height="25" valign=top align="right" nowrap>100%</td>
</tr>
<tr>
<td height="25" valign=top align="right" nowrap>75%</td>
</tr>
<tr>
<td height="25" valign=top align="right" nowrap>50%</td>
</tr>
<tr>
<td height="25" valign=top align="right" nowrap>25%</td>
</tr>
<tr>
<td height="31" valign=top align="right" nowrap>0</td>
</tr>
</table></td>
<td valign="bottom">
<table align=center>
<tr valign=bottom >
<td width="15" align=center nowrap background=../../Images/Visit/tu_back.gif><img src=../../Images/Visit/bar.gif width="15" height="100" id=htav><br>
总</td>
<% For I=0 To 23 %>
<td width="15" align=center nowrap background=../../Images/Visit/tu_back.gif><img src=../../Images/Visit/bar.gif width="15" height="<% =VisitsSize(I) %>" id=htav><br>
<% = I%>
</td>
<% Next %>
<td>单位(点)</td>
</tr>
</table></td>
</tr>
</table> </td>
</tr>
</table>
</body>
</html>
<%
Conn.Close
Set Conn=Nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -