ASP.NET頁面錯誤處理及郵件傳送簡易方案

iDotNetSpace發表於2009-01-05

1包含頁面:Default.aspx,Error.aspx

2.思路:Global.asax頁面負責捕捉系統中除去try以外發生的頁面錯誤。並將錯資訊傳送給Error.aspx頁面。Error.aspx頁面負責顯示錯誤資訊,並將錯誤資訊傳送到指定郵箱。

3.具體程式碼:

Default.aspx頁面

 

Code
html部分:


   
   

   
   

            DataValueField="id">
   

   
   

cs部分:
protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            DataTable dt = new DataTable();
            dt.Columns.Add(new DataColumn("id",typeof(string)));
            dt.Columns.Add(new DataColumn("name", typeof(string)));

            dt.Rows.Add(dt.NewRow());
            dt.Rows[0][0] = "1";
            dt.Rows[0][1] = "1";
            this.DropDownList1.DataSource = dt;
            this.DropDownList1.DataBind();

        }
    }
 protected void Button1_Click(object sender, EventArgs e)
    {
        this.DropDownList1.SelectedValue = "fff";
    }
 

Global.asax程式碼:

Code

 void Application_Error(object sender, EventArgs e)
    {
        Exception  LastError = Server.GetLastError();
        if (LastError != null)
            Response.Redirect("error.aspx?error="+LastError.InnerException.ToString().Replace("\r\n",""));
    }
 

Error.aspx程式碼:

 

Code
html部分:


   
   

        抱歉:發生了錯誤。
    

   
   

   

cs部分:

新增名稱空間:

using System.Net.Mail;
protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            if (Request["error"] != null && Request["error"].Length > 0)
            {
                this.Label1.Text = Request["error"];
                SendMail(Request["error"]);
            }
        }
    }
 public void SendMail(string body)
    {
        MailMessage myMail = new MailMessage();
       
        myMail.From = new MailAddress("myaccount@test.com");
        myMail.To.Add("test@test.com");
        myMail.Subject = "Error";
        myMail.Priority = MailPriority.Normal;
        myMail.BodyEncoding = System.Text.Encoding.UTF8;
        myMail.Body = body;
        SmtpClient smtp = new SmtpClient();
        smtp.Host = "mail";
        try
        {
            smtp.Send(myMail);
        }
        catch (SmtpException ex)
        {
            this.Label1.Text = "郵件傳送失敗。\r\n"+ex.Message;
        }

    }

 

至此,系統即可實現錯誤捕捉顯示,及郵件發生功能。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-526837/,如需轉載,請註明出處,否則將追究法律責任。

相關文章