2009-04-22 111 views
0
Server Error in '/' Application. 
-------------------------------------------------------------------------------- 

Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation. 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.ArgumentException: Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation. 

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 

Stack Trace: 


[ArgumentException: Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.] 
    System.Web.UI.ClientScriptManager.ValidateEvent(String uniqueId, String argument) +2080169 
    System.Web.UI.Control.ValidateEvent(String uniqueID, String eventArgument) +106 
    System.Web.UI.WebControls.LinkButton.RaisePostBackEvent(String eventArgument) +32 
    System.Web.UI.WebControls.LinkButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +7 
    System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +11 
    System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +174 
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5102 




-------------------------------------------------------------------------------- 
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42 

我该怎么做才能纠正这个问题?Error Added When MasterPage

+1

我假设你做了什么错误消息建议 - 设置ClientScriptManager.RegisterForEventValidation属性? – Cerebrus 2009-04-22 06:42:45

回答

1

错误包含上,您可以执行下列哪些足够的信息:

1.添加指令母版页

<%@ Page EnableEventValidation="true" %> 

2.编辑的Web.Config

<system.web> 
    <pages enableEventValidation="true"/> 
</system.web> 
1

您可能有多个表单元素。从内容页面中删除任何表单元素。

+0

这是我的问题。多个

标签在同一个WebForms页面上。 – 2016-01-05 15:26:11