2013-04-22 81 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支持的案例,只是爲了歡笑。

相關問題