我试图了解发生了什么错误,将我发送到 Global ASAX OnError 处理程序。
using System;
using System.Web;
namespace GLSS.Components.HttpModules
{
public class ExceptionModule : System.Web.IHttpModule
{
private void OnError(object sender, EventArgs e)
{
HttpContext context = HttpContext.Current;
//get the last error
Exception ex = context.Server.GetLastError();
if(ex.InnerException.GetType().ToString() == "CSLA.DataPortalException")
ex = ex.InnerException;
这是我的异常转换为字符串
HttpContext.Current.Server.GetLastError().Message
"File does not exist."
HttpContext.Current.Server.GetLastError().StackTrace
" at System.Web.StaticFileHandler.GetFileInfo(String virtualPathWithPathInfo, String physicalPath, HttpResponse response)
at System.Web.StaticFileHandler.ProcessRequestInternal(HttpContext context)
at System.Web.DefaultHttpHandler.BeginProcessRequest(HttpContext context, AsyncCallback callback, Object state)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)"
如何确定导致此错误的代码行?我试图将我的 Debug 选项设置为在错误发生时中断,但它没有,我仍然在 ONERROR 全局处理程序中结束。
一件事是我看到代码假定会有一个内部异常,这似乎是 NULL 并导致处理程序中的第二个错误。
我假设错误发生在编译代码的某个地方。我检查了 Web.Config,唯一提到的路径是一个日志路径,这似乎有效并且日志记录似乎正在工作。
更新 我在这里找到了一些额外的信息:
当我在“立即”窗口中检查时:
? HttpContext.Current.Request.Url.ToString()
"http://localhost:2322/favicon.ico"
然而,令我困惑的是,我使用“在文件中查找”搜索我的整个解决方案以查找 favicon.ico,但我没有看到任何参考。
当我没有看到对图标文件的引用时,为什么会收到找不到图标文件的错误消息?我猜有些组件正在使用它?但是为什么要在网络根目录中寻找它呢?