Asp.net 自定义错误处理并写入系统日志

Asp.net 自定义错误处理并写入系统日志

一 在Global.asax中自定义错误处理并写入系统日志

protected void Application_Error(Object sender, EventArgs e)
  {//定制错误信息
   string pageurl=Request.Path;
   Exception errorinfo=Server.GetLastError();
   string message="Url"+pageurl;
   message=message+errorinfo.ToString();
   string logname="Mycustomlog";
   if(!EventLog.SourceExists(logname)){
    EventLog.CreateEventSource(logname,logname);
   }
   EventLog log=new EventLog();
   log.Source=logname;
   log.WriteEntry(message,EventLogEntryType.Error);
  }

二 web.config定义错误处理

<customErrors mode="RemoteOnly" defaulttredirect="err.aspx" >
    <error statuscode="500" redirect="500.aspx"></error>
    <error statuscode="404" redirect="404.aspx"></error>
    </customErrors>


 

你可能感兴趣的:(Asp.net 自定义错误处理并写入系统日志)