首页 > Web开发 > 详细

asp中日志方法

时间:2016-09-20 11:52:01      阅读:200      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!