Click here to Skip to main content
15,896,153 members
Articles / Web Development / ASP.NET

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 74.1K   21  
How to send ASP.NET formatted exception details via email

Alternatives

Members may post updates or alternatives to this current article in order to show different approaches or add new features.

Please Sign up or sign in to vote.
12 Oct 2011Mukund Thakker
We can include some more information like browser, client's IP address etc.string result = "";System.IO.StreamReader objReader = default(System.IO.StreamReader);objReader = new System.IO.StreamReader("error.htm");result = objReader.ReadToEnd();objReader.Close();result =...

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