主頁(yè) > 知識(shí)庫(kù) > 用ASP創(chuàng)建日志文件(附源程序)

用ASP創(chuàng)建日志文件(附源程序)

熱門標(biāo)簽:世界地圖標(biāo)注了哪些城市 石家莊慧營(yíng)銷外呼系統(tǒng) 梧州市地圖標(biāo)注 濟(jì)源電銷外呼系統(tǒng)線路 創(chuàng)意電話機(jī)器人 地圖標(biāo)注陽(yáng)江 外呼線路批發(fā) 武穴地圖標(biāo)注 java外呼系統(tǒng)是什么
這個(gè)例子使用文本文件來寫入用戶的信息創(chuàng)建一個(gè)logfile.asp放在每一個(gè)asp的頁(yè)面的頂端!--#Include File="LogFile.asp"-->當(dāng)有人來訪問你的站點(diǎn)logfile.asp自動(dòng)把他的信息寫入LogFile.txt,如果相關(guān)的URl一樣的話則不寫入文件
File: LogFile.asp
復(fù)制代碼 代碼如下:

%
Dim ValidEntry ' Log variable
' First set that this log is valid
ValidEntry = True

' If Session Variable "LogIn" is not empty
' that mean this person has already been logged
' then set ValidLog to False
If not IsEmpty(Session("LogIn")) then ValidEntry = False

' Here you can add different restriction
' If the refering url is from same site
' don't write to log file
If Left(Request.ServerVariables("HTTP_REFERER"), 17)
="http://jb51.net" Then
ValidEntry = False
End if
If Left(Request.ServerVariables("HTTP_REFERER"), 21)
="https://www.jb51.net" Then
ValidEntry = False
End If

' Now if ValidEntry is True then enter to log file
If ValidEntry Then
Const ForAppending = 8
Const Create = true
Dim FSO
DIM TS
DIM MyFileName
Dim strLog

MyFileName = Server.MapPath("MyLogFile.txt")
Set FSO = Server.CreateObject("Scripting.FileSystemObject")
Set TS = FSO.OpenTextFile(MyFileName, ForAppending, Create)

' Store all required values in strLog
strLog = "br>P>B>" now "/B> "
strLog = strLog Request.ServerVariables("REMOTE_ADDR") " "
strLog = strLog Request.ServerVariables("HTTP_REFERER") " "
strLog = strLog Request.ServerVariables("HTTP_USER_AGENT") "BR>"
' Write current information to Log Text File.
TS.write strLog
TS.Writeline ""
' Create a session varialbe to check next time for ValidEntry
Session("LogIn") = "yes"
Set TS = Nothing
Set FSO = Nothing
End If
%>

標(biāo)簽:揭陽(yáng) 唐山 淮北 滁州 南寧 甘南 迪慶 來賓

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《用ASP創(chuàng)建日志文件(附源程序)》,本文關(guān)鍵詞  用,ASP,創(chuàng)建,日志,文件,附,;如發(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)文章
  • 下面列出與本文章《用ASP創(chuàng)建日志文件(附源程序)》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于用ASP創(chuàng)建日志文件(附源程序)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章