程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> 在 .NET Framework 2.0 中未處理的異常導致基於 ASP.NET 的應用程序意外退出

在 .NET Framework 2.0 中未處理的異常導致基於 ASP.NET 的應用程序意外退出

編輯:ASP.NET基礎
但是,系統日志中可能會記錄類似於以下內容的事件消息:
事件類型:警告
事件來源:W3SVC
事件類別:無
事件 ID: 1009
日期: 9/28/2005

using System;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Web;
namespace WebMonitor {
public class UnhandledExceptionModule: IHttpModule {
static int _unhandledExceptionCount = 0;
static string _sourceName = null;
static object _initLock = new object();
static bool _initialized = false;
public void Init(HttpApplication app) {
// Do this one time for each AppDomain.
if (!_initialized) {
lock (_initLock) {
if (!_initialized) {
string webenginePath = Path.Combine(RuntimeEnvironment.GetRuntimeDirectory(), "webengine.dll");
if (!File.Exists(webenginePath)) {
throw new Exception(String.Format(CultureInfo.InvariantCulture,
"Failed to locate webengine.dll at '{0}'. This module requires .NET Framework 2.0.",
webenginePath));
}
FileVersionInfo ver = FileVersionInfo.GetVersionInfo(webenginePath);
_sourceName = string.Format(CultureInfo.InvariantCulture, "ASP.NET {0}.{1}.{2}.0",
ver.FileMajorPart, ver.FileMinorPart, ver.FileBuildPart);
if (!EventLog.SourceExists(_sourceName)) {
throw new Exception(String.Format(CultureInfo.InvariantCulture,
"There is no EventLog source named '{0}'. This module requires .NET Framework 2.0.",
_sourceName));
}
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(OnUnhandledException);
_initialized = true;
}
}
}
}
public void Dispose() {
}
void OnUnhandledException(object o, UnhandledExceptionEventArgs e) {
// Let this occur one time for each AppDomain.
if (Interlocked.Exchange(ref _unhandledExceptionCount, 1) != 0)
return;
StringBuilder message = new StringBuilder("\r\n\r\nUnhandledException logged by UnhandledExceptionModule.dll:\r\n\r\nappId=");
string appId = (string) AppDomain.CurrentDomain.GetData(".appId");
if (appId != null) {
message.Append(appId);
}

Exception currentException = null;
for (currentException = (Exception)e.ExceptionObject; currentException != null; currentException = currentException.InnerException) {
message.AppendFormat("\r\n\r\ntype={0}\r\n\r\nmessage={1}\r\n\r\nstack=\r\n{2}\r\n\r\n",
currentException.GetType().FullName,
currentException.Message,
currentException.StackTrace);
}
EventLog Log = new EventLog();
Log.Source = _sourceName;
Log.WriteEntry(message.ToString(), EventLogEntryType.Error);
}
}
}


將 UnhandledExceptionModule.cs 文件保存到下面的文件夾中:
C:\Program Files\Microsoft Visual Studio 8\VC
打開 Microsoft Visual Studio 2005 命令提示符窗口。
鍵入 sn.exe -k key.snk,然後按 Enter。
鍵入 csc /t:library /r:system.web.dll,system.dll /keyfile:key.snk UnhandledExceptionModule.cs,然後按 Enter。
鍵入 gacutil.exe /if UnhandledExceptionModule.dll,然後按 Enter。
鍵入 ngen install UnhandledExceptionModule.dll,然後按 Enter。
鍵入 gacutil /l UnhandledExceptionModule,然後按 Enter 以顯示 UnhandledExceptionModule 文件的強名稱。
9. 將下面的代碼添加到基於 ASP.NET 的應用程序的 Web.config 文件中。
<add name="UnhandledExceptionModule"
    type="WebMonitor.UnhandledExceptionModule, <strong name>" />

方法 2將未處理異常策略更改回 .NET Framework 1.1 和 .NET Framework 1.0 中發生的默認行為。
注意:我們不建議您更改默認行為。如果忽略異常,應用程序可能會洩漏資源並放棄鎖定。
要啟用這種默認行為,請將下面的代碼添加到位於以下文件夾的 Aspnet.config 文件中:
復制代碼 代碼如下:
%WINDIR%\Microsoft.NET\Framework\v2.0.50727
<configuration>
<runtime>
<legacyUnhandledExceptionPolicy enabled="true" />
</runtime>
</configuration>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved