• 大小: 107KB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2021-05-09
  • 语言: C#
  • 标签:

资源简介

C# 利用log4net 把日志写入到数据库

资源截图

代码片段和文件信息

using log4net.Config;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;

namespace Log4NetApply
{
    public class Global : System.Web.HttpApplication
    {

        protected void Application_Start(object sender EventArgs e)
        {
            //应用程序启动时,自动加载配置log4Net  
            xmlConfigurator.Configure();  
        }

        protected void Session_Start(object sender EventArgs e)
        {

        }

        protected void Application_BeginRequest(object sender EventArgs e)
        {

        }

        protected void Application_AuthenticateRequest(object sender EventArgs e)
        {

        }

        protected void Application_Error(object sender EventArgs e)
        {

        }

        protected void Session_End(object sender EventArgs e)
        {

        }

        protected void Application_End(object sender EventArgs e)
        {

        }
    }
}

评论

共有 条评论

相关资源