2013-04-22 64 views
1

我在asp:Panel内有LinkButton。当我点击确认按钮,我看到在IE10控制台以下: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,所以这不是问题。任何人见过这个?

+0

Checked [this](http://www.hanselman.com/blog/BugAndFixASPNETFailsToDetectIE10CausingDoPostBackIsUndefinedJavaScriptErrorOrMaintainFF5ScrollbarPosition.aspx)? – 2013-04-22 08:58:45

+0

@HarshBaid:正如我所说的,我们已经安装了更新'KB2600088'。 – 2013-04-22 09:17:59

+0

由于异常在'AsyncPostBackErrorEventArgs'的构造函数中,缺少的参数是'exception',我认为这个异常是框架的一个普遍问题。 – 2013-04-22 09:24:46

回答

-1

当我厌倦了与此混淆时,我只是删除了“面板”,一切正常。我还打开了一个微软MSDN支持的案例,只是为了欢笑。

相关问题