Click here to Skip to main content
15,881,204 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.50/5 (4 votes)
12 Oct 2011CPOL 10K   3  
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 =...

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.
9 Oct 2011Mohammad A Rahman 1 alternative  
How to send ASP.NET formatted exception details via email

License

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


Written By
Technical Lead
India India
Project Lead
MCTS - .NET Framework 4.0, Web Applications

Blog : http://thakkermukund.wordpress.com
Twitter@thakkermukund

Don't code today, what you can't debug tomorrow!
Everything makes sense in someone's mind

Comments and Discussions