Visit_SystemStatistic.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:7k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../../FS_Inc/Const.asp" -->
  3. <!--#include file="../../FS_InterFace/MF_Function.asp" -->
  4. <!--#include file="../../FS_InterFace/NS_Function.asp" -->
  5. <!--#include file="../../FS_Inc/Function.asp" -->
  6. <%
  7. Response.Buffer = True
  8. Response.Expires = -1
  9. Response.ExpiresAbsolute = Now() - 1
  10. Response.Expires = 0
  11. Response.CacheControl = "no-cache"
  12. Dim Conn,User_Conn,tmp_type,strShowErr
  13. MF_Default_Conn
  14. MF_User_Conn
  15. MF_Session_TF
  16. if not MF_Check_Pop_TF("SS_site") then Err_Show
  17. if not MF_Check_Pop_TF("SS001") then Err_Show
  18. %>
  19. <html>
  20. <head>
  21. <title>系统/浏览器统计</title>
  22. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  23. </head>
  24. <link href="../images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  25. <body bgcolor="#FFFFFF" topmargin="2" leftmargin="2">
  26. <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" class="table">
  27.   <tr> 
  28.     <td height="28" class="xingmu"><div align="left"><strong>系统/浏览器统计</strong></div></td>
  29.   </tr>
  30.   <tr>
  31.     <td height="28" class="hback"><%
  32. Dim RsOsObj,Sql
  33. Set RsOsObj = Server.CreateObject(G_FS_RS)
  34. Sql="Select OSType,ExploreType From FS_SS_Stat"
  35. RsOsObj.Open Sql,Conn,3,3
  36. Dim OsType,ExploreType
  37. Dim Num2000,NumXP,Num2003,NumNT,Num9x,NumUnix,NumOthers
  38. Num2000=0
  39. NumXP=0
  40. Num2003=0
  41. NumNT=0
  42. Num9x=0
  43. NumUnix=0
  44. NumOthers=0
  45. Dim NumIE6,NumIE5,NumNetscape,NumOpera,NumNetCaptor,NumIE4,NumOther
  46. NumIE6=0
  47. NumIE5=0
  48. NumNetscape=0
  49. NumOpera=0
  50. NumNetCaptor=0
  51. NumIE4=0
  52. NumOther=0
  53. Do While not RsOsObj.Eof
  54. OsType= RsOsObj("OsType")
  55. ExploreType= RsOsObj("ExploreType")
  56. Select Case OsType
  57. Case "Windows 2000"
  58. Num2000=Num2000+1
  59. Case "Windows XP"
  60. NumXP=NumXP+1
  61. Case "Windows 2003"
  62. Num2003=Num2003+1
  63. Case "Windows NT"
  64. NumNT=NumNT+1
  65. Case "Windows 9x"
  66. Num9x=Num9x+1
  67. Case "Unix & Unix 类"
  68. NumUnix=NumUnix+1
  69. Case "Others"
  70. NumOthers=NumOthers+1
  71. Case Else
  72. End Select
  73. Select Case ExploreType
  74. Case "Internet Explorer 6.x"
  75. NumIE6=NumIE6+1
  76. Case "Internet Explorer 5.x"
  77. NumIE5=NumIE5+1
  78. Case "Netscape"
  79. NumNetscape=NumNetscape+1
  80. Case "Opera"
  81. NumOpera=NumOpera+1
  82. Case "NetCaptor"
  83. NumNetCaptor=NumNetCaptor+1
  84. Case "Internet Explorer 4.x"
  85. NumIE4=NumIE4+1
  86. Case "Others"
  87. NumOther=NumOther+1
  88. Case Else
  89. End Select
  90. RsOsObj.MoveNext
  91. Loop
  92. %>
  93. <%
  94. Dim AllNum
  95. AllNum=Num2000+NumXP+Num2003+NumNT+Num9x+NumUnix+NumOthers
  96. Dim AllNums
  97. AllNums=NumIE6+NumIE5+NumNetscape+NumOpera+NumNetCaptor+NumIE4+NumOther
  98. %>
  99. <table width="100%" border=0 cellpadding=2>
  100.         <tr>
  101. <td  align=center><div align="center">系统统计图表</div></td>
  102. <td  align=center><div align="center">浏览器统计图表</div></td>
  103. </tr>
  104. <tr valign=top>
  105. <td height=22 align=center>
  106. <table align=center>
  107.         <tr valign=cente>
  108.           <td align=right nowap>Windows 2000</td>
  109.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif width="
  110. <% if AllNum<>0 then
  111. Response.Write(150*Num2000/AllNum)
  112. else
  113. Response.Write(0)
  114. end if
  115.  %>
  116. " height=15></td>
  117. <td nowap><% = Num2000 %></td>
  118. </tr>
  119. <tr valign=cente>
  120.           <td align=right nowap>Windows XP</td>
  121.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  122. <td nowap><% = NumXP %></td>
  123. </tr>
  124. <tr valign=cente>
  125.           <td align=right nowap>Windows 2003</td>
  126.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  127. <td nowap><% = Num2003 %></td>
  128. </tr>
  129. <tr valign=cente>
  130.           <td align=right nowap>Windows NT</td>
  131.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  132. <td nowap><% = NumNT %></td>
  133. </tr>
  134. <tr valign=cente>
  135.           <td align=right nowap>Windows 9x</td>
  136.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  137. <td nowap><% = Num9x %></td>
  138. </tr>
  139. <tr valign=cente>
  140.           <td align=right nowap>Unix & Unix 类</td>
  141.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  142. <td nowap><% = NumUnix %></td>
  143. </tr>
  144. <tr valign=cente>
  145.           <td align=right nowap>Others</td>
  146.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  147. <td nowap><% = NumOthers %></td>
  148. </tr>
  149. <tr valign=cente>
  150.           <td align=right nowap>共</td>
  151.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif width="150" height=15></td>
  152. <td nowap><% = AllNum %></td>
  153. </tr>
  154. </table>
  155. </td>
  156. <td align=center>
  157. <table align=center>
  158.         <tr valign=cente>
  159.           <td align=right nowap>Internet Explorer 6.x</td>
  160.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  161. <td nowap><% = NumIE6 %></td>
  162. </tr>
  163. <tr valign=cente>
  164.           <td align=right nowap>Internet Explorer 5.x</td>
  165.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  166. <td nowap><% = NumIE5 %></td>
  167. </tr>
  168. <tr valign=cente>
  169.           <td align=right nowap>Netscape</td>
  170.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  171. <td nowap><% = NumNetscape %></td>
  172. </tr>
  173. <tr valign=cente>
  174.           <td align=right nowap>Opera</td>
  175.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  176. <td nowap><% = NumOpera %></td>
  177. </tr>
  178. <tr valign=cente>
  179.           <td align=right nowap>NumNetCaptor</td>
  180.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  181. <td nowap><% = NumNetCaptor %></td>
  182. </tr>
  183. <tr valign=cente>
  184.           <td align=right nowap>Internet Explorer 4.x</td>
  185.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  186. <td nowap><% = NumIE4 %></td>
  187. </tr>
  188. <tr valign=cente>
  189.           <td align=right nowap>Others</td>
  190.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif height=15></td>
  191. <td nowap><% = NumOther %></td>
  192. </tr>
  193. <tr valign=cente>
  194.           <td align=right nowap>共</td>
  195.           <td align=left background=../../Images/Visit/tu_back_2.gif valign=middle width=150><img src=../Images/bar2.gif width="150" height=15></td>
  196. <td nowap><% = AllNums %></td>
  197. </tr>
  198. </table>
  199. </td>
  200. </tr>
  201. </table></td>
  202.   </tr>
  203. </table>
  204. </body>
  205. </html>