首页  ·  知识 ·  云计算
ASPNET全局错误处理类
佚名  http://gzycm520.blog.51cto.com/175220/37632  综合  编辑:dezai  图片来源:网络
Global.asax文件中加入 /// summary/// 系统错误日志记录/// /summary///
Global.asax文件中加入
///
  /// 系统错误日志记录
  ///

  ///
  ///
  protected void Application_Error(Object sender, EventArgs e)
  {
   //错误的全局处理
   Exception  ex = Server.GetLastError().GetBaseException() ;
   //记录错误日志
   string strFile = Request.ApplicationPath + "/sys_error.log";
   strFile = Server.MapPath(strFile);
   System.IO.StreamWriter st = new System.IO.StreamWriter (strFile,true,System.Text.Encoding.UTF8);
   
   string sText ="" ;
   sText  += "\r\n//----------------------------------------------------------------------------\r\n";
   sText  += "//----------------------------------------------------------------------------\r\n";
   sText  += "系统出现如下错误:\r\n";
   sText  += "    发生时间  :  " + DateTime.Now.ToString() + "\r\n";
   sText  += "    错误描述  :  " + ex.Message.Replace("\r\n","")  + "\r\n";
   sText  += "    错误对象  :  " + ex.Source  + "\r\n";
   sText  += "    错误帮助  :  " + ex.HelpLink  + "\r\n";
   sText  += "    错误页面  :  " + Request.UrlReferrer  + "\r\n";
   sText  += "    用户  IP  :  " + Request.UserHostAddress  + "\r\n";
   sText  += "    用户  IE  :  " + Request.UserAgent  + "\r\n";
   sText  += "    详细描述  :\r\n" + ex.StackTrace + "\r\n";
   sText  += "\r\n";
   st.Write(sText);
   st.Close();
   Response.Write ("");
   Response.End();
   
  }
本文作者:佚名 来源:http://gzycm520.blog.51cto.com/175220/37632
CIO之家 www.ciozj.com 微信公众号:imciow
   
免责声明:本站转载此文章旨在分享信息,不代表对其内容的完全认同。文章来源已尽可能注明,若涉及版权问题,请及时与我们联系,我们将积极配合处理。同时,我们无法对文章内容的真实性、准确性及完整性进行完全保证,对于因文章内容而产生的任何后果,本账号不承担法律责任。转载仅出于传播目的,读者应自行对内容进行核实与判断。请谨慎参考文章信息,一切责任由读者自行承担。
延伸阅读