码迷,mamicode.com
首页 > Web开发 > 详细

asp中日志方法

时间:2016-09-20 11:52:19      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

<%
    Function getPath()
        getPath = request.servervariables("APPL_PHYSICAL_PATH")
    End Function

    Function getScriptName()
        sName = request.servervariables("SCRIPT_NAME")
        getScriptName = sName
    End Function


    Sub writeLog(logMsg, strSQL)
        f_YY=CStr(Year(Now()))
        If( Month(Now()) < 10 ) Then
            f_MM="0" & CStr(Month(Now()))
        Else
            f_MM=CStr(Month(Now()))
        End if
        If( day(Now()) < 10 ) Then
            f_DD="0" & CStr(day(Now()))
        Else
            f_DD=CStr(day(Now()))
        End if

        ‘f_date    = FormatDateTime(date,2)
        f_date1    = f_YY & f_MM & f_DD

     
        pathname = "D:\LOG\" & Request.ServerVariables("REMOTE_ADDR") & "-" &  f_date1    & ".log" ‘formatdatetime(Date, 1) FormatDateTime(Now(),1)
        set fso = server.CreateObject("scripting.filesystemobject")

        if fso.fileExists(pathname) then          
            set ofile = fso.OpenTextFile(pathname,8,true)
        else
            set ofile = fso.CreateTextFile(pathname,true)
        end If

        ofile.Writeline "[" & Now & "-" & getScriptName() & "]" & chr(13) & chr(10)
        ofile.Writeline logMsg & chr(13) & chr(10)
        ofile.Writeline strSQL & chr(13) & chr(10)

        ofile.close
        set ofile = nothing
        set fso = nothing
    End Sub
%>

asp中日志方法

标签:

原文地址:http://www.cnblogs.com/iframe/p/5887842.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!