asp.net页面出错时的处理方法

本文介绍了三种ASP.NET中常见的错误处理方法:通过Web.config配置文件重定向错误页面、利用Global.asax中的Application_Error事件记录错误日志并发送短信通知管理员、在Page_Error事件中处理错误。其中详细解释了第二种方法的具体实现步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.第一种做法,在Web.config文件配置

<system.web>
      
<customErrors defaultRedirect="~/ErrorPage.aspx" 
                     mode
="RemoteOnly">
      
</customErrors>
</system.web>

 

  defaultRedirect属性用来指明当aspx页面发生了未处理错误时导向的页面; 但Asp.net使用重定向机制来重新导航错误页面,这样错误信息就会丢失,也就是说我们用Server.GetLastError()获得的Exception对象始终是空的。虽然可以提示用户出错,并提供一个返回出错页面的链接,却不能给管理员一个很好的错误提示。

2.第二种做法:在global文件里的Application_Error方法中处理

ExpandedBlockStart.gif代码
protected void Application_Error(Object sender, EventArgs e)
        {
            Exception ex
=Server.GetLastError().GetBaseException();

            string errorTime="发生时间:"+DateTime.Now.ToString();
            string errorAddress="发生异常页:"+Request.Url.ToString();
            
string errorInfo="异常信息:"+ex.Message;
            
string errorSource="错误源:"+ex.Source;
            
string errorTrace="堆栈信息:"+ex.StackTrace;
            Server.ClearError();

            System.IO.StreamWriter writer
=null;
            
try
            {
                
lock(this)
                {
                    
//写入日志 
                    string year=DateTime.Now.Year.ToString();
                    
string month=DateTime.Now.Month.ToString();
                    
string day=DateTime.Now.Day.ToString();
                    
string path=string.Empty;
                    
string filename=DateTime.Now.ToString("yyyyMMdd")+".txt";
                    path
=Server.MapPath("~/Error/")+year+month+day;
                    
if(!Directory.Exists(path))
                    {
                        Directory.CreateDirectory(path);
                    }
                    System.IO.FileInfo file
=new FileInfo(path+"/"+filename);
                    writer
=new StreamWriter(file.FullName,true);//文件不在则创建,true表示追加
                    writer.WriteLine("用户IP:"+Request.UserHostAddress);
                    writer.WriteLine(errorTime);
                    writer.WriteLine(errorAddress);
                    writer.WriteLine(errorInfo);
                    writer.WriteLine(errorSource);
                    writer.WriteLine(errorTrace);
                    writer.WriteLine(
"-------------------------------------------------------");

                }
            }
            
finally
            {
                
if(writer!=null)
                {
                    writer.Close();
                }
            }
            Server.Transfer(
"~/ErrorPage.aspx"); //转到显示友好错误的页面

        }

然后在ErrorPage.aspx页面显示一些好友的提示信息.

3.第三种做法:在Page_Error事件里面处理

ExpandedBlockStart.gif代码
        private void Page_Load(object sender, System.EventArgs e)
        {
            
throw(new ArgumentNullException());
        }

        
public void Page_Error(object sender,EventArgs e)
        {
            Exception ex
=Server.GetLastError().GetBaseException();

            
string errorTime="发生时间:"+DateTime.Now.ToString();
            
string errorAddress="发生异常页:"+Request.Url.ToString();
            
string errorInfo="异常信息:"+ex.Message;
            
string errorSource="错误源:"+ex.Source;
            
string errorTrace="堆栈信息:"+ex.StackTrace;

            Server.ClearError();

            System.IO.StreamWriter writer
=null;
            
try
            {
                
lock(this)
                {
                    
//写入日志 
                    string year=DateTime.Now.Year.ToString();
                    
string month=DateTime.Now.Month.ToString();
                    
string day=DateTime.Now.Day.ToString();
                    
string path=string.Empty;
                    
string filename=DateTime.Now.ToString("yyyyMMdd")+".txt";
                    path
=Server.MapPath("~/Error/")+year+month+day;
                    
if(!Directory.Exists(path))
                    {
                        Directory.CreateDirectory(path);
                    }
                    System.IO.FileInfo file
=new FileInfo(path+"/"+filename);
                    writer
=new StreamWriter(file.FullName,true);//文件不在则创建,true表示追加
                    writer.WriteLine("用户IP:"+Request.UserHostAddress);
                    writer.WriteLine(errorTime);
                    writer.WriteLine(errorAddress);
                    writer.WriteLine(errorInfo);
                    writer.WriteLine(errorSource);
                    writer.WriteLine(errorTrace);
                    writer.WriteLine(
"-------------------------------------------");

                }
            }
            
finally
            {
                
if(writer!=null)
                {
                    writer.Close();
                }
            }

            Server.ClearError();
//防止错误继续到要被处理的 Application_Error 事件中。
            Response.Redirect("~/ErrorPage.aspx");
            
        }

 

我经常的做法是使用第二种方法,然后再写一个发送短信的方法(调用移动的短信借口),这样的话程序出错的时候,管理员可以收到程序出错的信息。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值