Web系统错误日志处理

Global.asax文件中加入

  /// <summary>
  /// 系统错误日志记录
  /// </summary>
  /// <param name="sender"></param>
  /// <param name="e"></param>
  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 ("<script language='javascript'>alert(/"错误描述:" + ex.Message.Replace("/r/n","")  + " //n//n错误对象:" + ex.Source.Replace("/n","") + "/");");
    Response.Write ("history.go(-1);");
    Response.Write ("</script>");
    Response.End();
  }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值