当我从客户端返回一个页面时,我得到以下错误。我有JavaScript代码,修改asp:ListBox在客户端。
我们如何解决这个问题?
错误详情如下:
Server Error in '/XXX' 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) +2132728
System.Web.UI.Control.ValidateEvent(String uniqueID, String eventArgument) +108
System.Web.UI.WebControls.ListBox.LoadPostData(String postDataKey, NameValueCollection postCollection) +274
System.Web.UI.WebControls.ListBox.System.Web.UI.IPostBackDataHandler.LoadPostData(String postDataKey, NameValueCollection postCollection) +11
System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad) +353
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1194
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.1433; ASP.NET Version:2.0.50727.1433
我有一个类似的问题,但我没有使用ASP。Net 1.1也没有通过javascript更新控件。
我的问题只发生在Firefox而不是IE(!)。
我在PreRender事件的下拉列表中添加了如下选项:
DropDownList DD = (DropDownList)F.FindControl("DDlista");
HiddenField HF = (HiddenField)F.FindControl("HFlista");
string[] opcoes = HF.value.Split('\n');
foreach (string opcao in opcoes) DD.Items.Add(opcao);
我的“HF”(隐藏字段)有换行符分隔的选项,如下所示:
HF.value = "option 1\n\roption 2\n\roption 3";
问题是HTML页面在代表下拉菜单的“选择”选项上出现了问题(我的意思是有换行符)。
所以我解决了我的问题加了一行
DropDownList DD = (DropDownList)F.FindControl("DDlista");
HiddenField HF = (HiddenField)F.FindControl("HFlista");
string dados = HF.Value.Replace("\r", "");
string[] opcoes = dados.Split('\n');
foreach (string opcao in opcoes) DD.Items.Add(opcao);
希望这能帮助到一些人。
(1) EnableEventValidation = " false "...................这对我没用。
(2) ClientScript.RegisterForEventValidation……这对我没用。
解决方案1:
在GridView中将Button/ImageButton更改为LinkButton。它的工作原理。(但我喜欢ImageButton)
研究:Button/ImageButton和LinkButton使用不同的回发方法
原文:
http://geekswithblogs.net/mahesh/archive/2006/06/27/83264.aspx
解决方案2:
在OnInit()中,输入如下代码来设置Button/ImageButton的唯一ID:
protected override void OnInit(EventArgs e) {
foreach (GridViewRow grdRw in gvEvent.Rows) {
Button deleteButton = (Button)grdRw.Cells[2].Controls[1];
deleteButton.ID = "btnDelete_" + grdRw.RowIndex.ToString();
}
}
原文:
http://www.c-sharpcorner.com/Forums/Thread/35301/
对我们来说,问题只在生产环境中随机发生。RegisterForEventValidation没有为我们做任何事情。
最后,我们发现在asp.net应用程序运行的web场中,两台IIS服务器安装了不同的。net版本。所以看起来他们有不同的规则加密asp.net验证散列。更新它们解决了大部分问题。
另外,我们在web中配置了machineKey(compatibilityMode)(在两个服务器中相同),httpRuntime(targetFramework), ValidationSettings:UnobtrusiveValidationMode, pages(renderAllHiddenFieldsAtTopOfForm)。配置两个服务器。
我们使用该站点生成密钥https://www.allkeysgenerator.com/Random/ASP-Net-MachineKey-Generator.aspx
我们花了很多时间来解决这个问题,我希望这对大家有所帮助。
<appSettings>
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
...
</appSettings>
<system.web>
<machineKey compatibilityMode="Framework45" decryptionKey="somekey" validationKey="otherkey" validation="SHA1" decryption="AES />
<pages [...] controlRenderingCompatibilityVersion="4.0" enableEventValidation="true" renderAllHiddenFieldsAtTopOfForm="true" />
<httpRuntime [...] requestValidationMode="2.0" targetFramework="4.5" />
...
</system.web>
我用过DataGrid。其中一列是“选择”按钮。当我点击任何一行的“选择”按钮时,我收到了这个错误消息:
无效的回发或回调参数。事件验证使用配置或
<%@ Page EnableEventValidation="true" %>出于安全考虑,此特性验证回发或回发的参数
回调事件源自最初呈现它们的服务器控件。如果数据是有效的和预期的,则使用
ClientScriptManager。RegisterForEventValidation方法,以便注册回发或回调数据进行验证。
我改了几个密码,最后成功了。我的体验路线:
1)我把页面属性改为EnableEventValidation="false"。但这并没有起作用。(这不仅危险
出于安全原因,我的事件处理程序没有被调用:void Grid_SelectedIndexChanged(对象发送者,EventArgs e)
2)实现ClientScript。渲染方法中的RegisterForEventValidation。但这并没有起作用。
protected override void Render(HtmlTextWriter writer)
{
foreach (DataGridItem item in this.Grid.Items)
{
Page.ClientScript.RegisterForEventValidation(item.UniqueID);
foreach (TableCell cell in (item as TableRow).Cells)
{
Page.ClientScript.RegisterForEventValidation(cell.UniqueID);
foreach (System.Web.UI.Control control in cell.Controls)
{
if (control is Button)
Page.ClientScript.RegisterForEventValidation(control.UniqueID);
}
}
}
}
3)我改变了我的按钮类型在网格列从PushButton到LinkButton。它工作!(" ButtonType = " LinkButton”)。我认为如果你可以改变你的按钮到其他控件,如“LinkButton”在其他情况下,它会正常工作。