Click here to Skip to main content
15,885,757 members
Articles / Web Development / ASP.NET
Tip/Trick

Send ASP.NET formatted exception details via email

Rate me:
Please Sign up or sign in to vote.
4.95/5 (13 votes)
9 Oct 2011CPOL2 min read 73.6K   21   17
How to send ASP.NET formatted exception details via email

A small library named AnLogger has been created based on the concept described in this Tips. Please have a look AnLogger - ASP.Net Logger[^].

Managing Exception/Error is a common task in any application. In ASP.NET, there are many ways to handle those errors or exceptions, for example, when an error or exception occurrs in an ASP.NET application, the system is going to send a formatted error message to specified developers or teams mentioned in the email list. The difference will be the body of the email will contain exactly the same formatted error as the ASP.NET generated one to display the error or exception details when occurred. For example,


ASP.NET Exception Details


But when an ASP.NET application goes into life, the user should not have to see the above error page where they should see a custom error page which is easy to understand. More information is available here[^].


So in here, the test application will display the default error page when an error occurs in the system as well as send an email with the formatted exception details like in the above image.


To do that, we need to add the following code in the void Application_Error(object sender, EventArgs e) method to the Global.asax.cs file:


C#
void Application_Error(object sender, EventArgs e)
{
    HttpUnhandledException httpUnhandledException = 
       new HttpUnhandledException(Server.GetLastError().Message, Server.GetLastError());
    SendEmailWithErrors(httpUnhandledException.GetHtmlErrorMessage());
}

So the GetHtmlErrorMessage() method of the HttpUnhandledException class will do all the formatting stuff. The HttpUnhandledException is .NET framework class and to find out more about it, please visit here[^].


The code block to send the email is shown below:


C#
private static void SendEmailWithErrors(string result)
{
    try
    {
        MailMessage Message = new MailMessage();
        Message.To = "To address";
        Message.From = "FROM addressd";
        Message.Subject = "Exception raised";
        Message.BodyFormat = MailFormat.Html;
        Message.Body = result;
        SmtpMail.SmtpServer = "SMTP Sever Address";
        SmtpMail.Send(Message);
    }
    catch (System.Web.HttpException ehttp)
    {
        // Write o the event log.
    }
}

To test this, there is a button on the page which triggers an exception; the code for the button is as below:


C#
protected void btnError_Click(object sender, EventArgs e)
{
    throw new Exception("This Exception is raised to test");
}

The system will display the default error page when an exception occurs and send an email with the formatted exception details as below:


Default error page:

User defined default error page


And an email with the formatted exception details:


Test Email with formatted exception details



Please have a look here to get similar Source code[^].

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Australia Australia

Comments and Discussions

 
Generalyou might want to publish this is as a custom smtp appender ... Pin
Sazzad Hossain9-Oct-11 2:42
Sazzad Hossain9-Oct-11 2:42 
GeneralRe: Thanks for the suggestions. I created a library named AnLogg... Pin
Mohammad A Rahman9-Oct-11 2:49
Mohammad A Rahman9-Oct-11 2:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.