主頁 > 知識(shí)庫 > 如何顯示最后十名來訪者?

如何顯示最后十名來訪者?

熱門標(biāo)簽:呼叫中心市場需求 智能手機(jī) 鐵路電話系統(tǒng) 美圖手機(jī) 網(wǎng)站文章發(fā)布 銀行業(yè)務(wù) 服務(wù)器配置 檢查注冊(cè)表項(xiàng)

%
Application.Lock
IF NOT isArray( Application( "lastTen" ) ) THEN
  DIM dummy( 10, 3 )
  Application( "lastTen" ) = dummy

' 創(chuàng)建或者取得最近10個(gè)Application數(shù)組.
END IF
  lastTen = Application( "lastTen" )
Application.UnLock

IF lastTen( 9, 0 ) > "" THEN
FOR i = 0 TO 9
  lastTen( i, 0 ) = lastTen( i + 1, 0 )
  lastTen( i, 1 ) = lastTen( i + 1, 1 )
  lastTen( i, 2 ) = lastTen( i + 1, 2 )

' 在數(shù)組里向下移動(dòng)每位來訪者.
NEXT
END IF

FOR i = 0 TO 9

' 添加新數(shù)組.
  IF lastTen( i, 0 ) = "" THEN
    lastTen( i, 0 ) = Request.ServerVariables( "REMOTE_ADDR" )
      lastTen( i, 1 ) = Request.ServerVariables( "HTTP_USER_AGENT" )
      lastTen( i, 2 ) = NOW()
    EXIT FOR
  END IF
NEXT

Application.Lock
Application( "lastTen" ) = lastTen
Application.UnLock

%>
center>
table bgcolor="#ccccc" cellspacing=0 cellpadding=3 border=1>
tr bgcolor="lightyellow">
  td>
來訪者/td>
  td>IP
地址/td>
  td>
瀏覽器/td>
  td>
訪問時(shí)間/td>

' 顯示最后10名來訪者.
/tr>
%
FOR i = 0 TO 9
IF lastTen( i, 0 ) > "" THEN
%>
tr>
  td>small>%=i + 1%>/small>/td>
  td>small>%=lastTen( i, 0 )%>/small>/td>
  td>small>%=lastTen( i, 1 )%>/small>/td>
  td>small>%=lastTen( i, 2 )%>/small>/td>
/tr>
%
END IF
NEXT
%>
/table>

[1]

標(biāo)簽:紅河 河南 上海 長治 滄州 樂山 沈陽 新疆

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《如何顯示最后十名來訪者?》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266