我有一个LinkButton
内asp:Panel
。当我单击确认按钮时,我在 IE10 控制台中看到以下内容:
SCRIPT7002: XMLHttpRequest: Network Error 0x80700013, Could not complete the operation due to error 80700013.
和
SCRIPT5022: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 0
当我查看事件查看器时,我看到:
Exception information:
Exception type: ArgumentNullException
Exception message: Value cannot be null.
Parameter name: exception
at System.Web.UI.AsyncPostBackErrorEventArgs..ctor(Exception exception)
at System.Web.UI.PageRequestManager.OnPageError(Object sender, EventArgs e)
at System.EventHandler.Invoke(Object sender, EventArgs e)
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.ProcessRequest(HttpContext context)
at ASP.general_resetpassword_aspx.ProcessRequest(HttpContext context)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
这仅在 IE10 中发生。在 IE9、IE8、Chrome 和 Firefox 中,这是可行的,我被重定向以继续应用程序的流程。我在 asp.net 4.0、IIS7.5 和 Windows server 2008 r2 上。
我已经安装了KB2600088
,所以这不是问题。有人见过这个吗?