⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fvisitor.asp

📁 电脑技术精华大全-共77册-507M.zip
💻 ASP
字号:
<!-- #Include File=Conn.asp -->
<%
Response.Expires=0
Dim Conn,Sql,Rs
Dim Rows,i

Sql="Select Top 30 * From Visitor Order By Id DESC"
Rs.Open Sql,Conn,1,1
If Not Rs.Bof And Not Rs.Eof Then
   Assay=Rs.GetRows
   Rows=Ubound(Assay,2)
Else
   Rows=-1
End If
Rs.Close
Conn.Close
Set Rs=Nothing
Set Conn=Nothing
%>
<HTML>
<HEAD>
<TITLE>网站统计分析系统</TITLE>
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<link rel="stylesheet" href="Info/Style.css">
</HEAD>
<BODY bgColor=#FFFFFF>
<CENTER>
<!-- #Include File=Header.asp-->
  <table width="640" border=1 bordercolor=#000099 cellpadding=0 cellspacing=0 >
    <tbody> 
    <tr> 
      <td height="33"> 
        <table border=0 cellpadding=3 cellspacing=0 width="100%" bgcolor="#FFFFFF">
          <tbody> 
          <tr> 
            <td colspan=6 align="center" bgcolor="#000099"> <font color="#FFFFFF">最 
              近 30 位 访 问 者 信 息 分 析 </font></td>
          </tr>
          <tr bgcolor="#CCCCCC"> 
            <td align=left width="14%">日期</td>
            <td align=left width="16%">时间</td>
            <td align=left width="26%">地址</td>
            <td align=left colspan="3" width="44%">链接页面</td>
          </tr>
          <%for i=0 to Rows%> 
          <tr bgcolor="#FFFFFF"> 
            <td align=left width="14%"><%=Assay(1,i)%></td>
            <td align=left width="16%"><%=FormatDateTime(Assay(2,i),4)%></td>
            <td align=left width="26%"><%=Assay(4,i)%></td>
            <td align=left colspan="3" width="44%">
			<% If Assay(8,i)="直接输入或书签导入" Then%>
			      <%=Left(Assay(8,i),40)%>
			 <%Else%>
			      <a href="<%=Assay(8,i)%>"><%=Left(Assay(8,i),40)%></a>
			 <%End If%>	
			</td>
          </tr>
          <%Next%> 
          <tr align="right"> 
            <td colspan=6 bgcolor="#000099"> 
              <p>&nbsp;</p>
            </td>
          </tr>
          </tbody> 
        </table>
      </td>
    </tr>
    </tbody> 
  </table>
<!-- #Include File=End.asp-->
</CENTER>
</BODY>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -