0

我正在开发使用大量 Ajax 控件的 Web 应用程序。我不是该应用程序的开发人员。我正在努力纠正这个问题。此应用程序不断抛出以下错误消息:

Source: System.Web
Message: Exception of type 'System.Web.HttpUnhandledException' was thrown.
Stack trace:
    at System.Web.UI.Page.HandleError(Exception e)
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    at System.Web.UI.Page.ProcessRequest()
    at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context)
    at System.Web.UI.Page.ProcessRequest(HttpContext context)
    at ASP.whyfj_aspx.ProcessRequest(HttpContext context)
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

我尝试在谷歌上搜索,但没有得到任何解决方案。我在本地服务器中没有遇到这个问题,主要是它的随机错误。有时相同的页面效果很好。

服务器:2008,IIS 7.5

请帮忙

4

1 回答 1

4

那不是实际异常的堆栈跟踪,只是错误处理框架的堆栈跟踪。除非您可以在事件日志中找到 innerException,否则您将无法轻松解决此问题。

接近开发商。

于 2011-06-16T09:16:38.000 回答