/ Published in: C#
Output your errors to the Windows event log. Very effective to output from try catch blocks.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
using System.Diagnostics; EventLog.WriteEntry("Error Title", exp.Message, System.Diagnostics.EventLogEntryType.Error);