public
class TestRaiseException { ~TestRaiseException() { int i =
0; int j =
1
/ i;
}
} static
void UnhandledExceptionEventHandler(object sender, UnhandledExceptionEventArgs e) { try { using (System.IO.FileStream fs =
new System.IO.FileStream(@"c:\testme.log",
System.IO.FileMode.Append, System.IO.FileAccess.Write))
{
using (System.IO.StreamWriter w =
new System.IO.StreamWriter(fs,
System.Text.Encoding.UTF8))
using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; namespace WebMonitor { /**////
<summary> /// Summary description for UnhandledExceptionModule ///
</summary>
public
class UnhandledExceptionModule : IHttpModule { static
object _initLock =
new
object(); static
bool _initialized =
false; public UnhandledExceptionModule() { // // TODO: Add constructor logic here // } void OnUnhandledException(object o, UnhandledExceptionEventArgs e) { //Do some thing you wish to do when the Unhandled Exception raised. try { using (System.IO.FileStream fs =
new System.IO.FileStream(@"c:\testme.log",
System.IO.FileMode.Append, System.IO.FileAccess.Write))
{
using (System.IO.StreamWriter w =
new System.IO.StreamWriter(fs, System.
Text.Encoding.UTF8))
{
w.WriteLine(e.ExceptionObject);
}
}
} catch {
}
} IHttpModule Members#region IHttpModule Members public
void Dispose() { throw
new Exception("The method or operation is not implemented.");
} public
void Init(HttpApplication context) { // Do this one time for each AppDomain.
lock (_initLock) { if (!_initialized) {
AppDomain.CurrentDomain.UnhandledException +=
new UnhandledExceptionEventHandler(OnUnhandledException);
_initialized =
true;
}
}
} #endregion
}
}
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void TestMe(object state)
{
byte[] buf = new byte[2];
buf[2] = 0;
}
protected void Button1_Click(object sender, EventArgs e)
{
System.Threading.ThreadPool.QueueUserWorkItem(new System.Threading.WaitCallback(TestMe),
null);
}
}
按下Button1后,w3wp.exe被终止,testme.log 中记录下了异常信息如下:
System.IndexOutOfRangeException: Index was outside the bounds of the array.
at _Default.TestMe(Object state) in c:"ApolloWorkFolder"test"laboratory
"TestWebSite"Default.aspx.cs:line 21
at System.Threading._ThreadPoolWaitCallback.WaitCallback_Context(Object state)
at System.Threading.ExecutionContext.runTryCode(Object userData)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(
TryCode code, CleanupCode backoutCode, Object userData)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext,
ContextCallback callback, Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext,
ContextCallback callback, Object state)
at System.Threading._ThreadPoolWaitCallback.PerformWaitCallbackInternal(
_ThreadPoolWaitCallback tpWaitCallBack)
at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)