Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to trace page behind the scene? And send all tracing information by email? not to show any tracing information on client side.

share|improve this question

2 Answers

Sounds like you need to implement a custom trace listener, in this case an SMTP trace listener, a sample implementation can be found here:

http://www.codeproject.com/KB/trace/smtptracelistenerarticle.aspx

share|improve this answer

You could look into various logging frameworks for .NET. A popular one is log4net, which will allow you to keep track of any errors in your application and email you the logs. You can see a comparison chart of some logging frameworks here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.