使用 javascript 修改控件 - 无效的回发或回调参数
我在页面上有一个下拉菜单
<asp:DropDownList ID="drpName" AutoPostBack="true" AppendDataBoundItems="true" runat="server" ></asp:DropDownList>
,有时我想使用 javascript/jquery 向其中添加项目。
当我选择已添加的项目并进行回发时,我收到以下错误:
*无效的回发或回调参数。使用配置或 <%@ Page EnableEventValidation="true" %> 启用事件验证在一个页面中。出于安全目的,此功能验证回发或回调事件的参数是否源自最初呈现它们的服务器控件。如果数据有效且符合预期,请使用 ClientScriptManager.RegisterForEventValidation 方法来注册回发或回调数据以进行验证。 *
关于如何解决这个问题有什么想法吗?
谢谢,
I have a a dropdown on a page
<asp:DropDownList ID="drpName" AutoPostBack="true" AppendDataBoundItems="true" runat="server" ></asp:DropDownList>
and I on occasion want to add items to it using javascript/jquery.
When I select the items that have been added and it does a postback I get the following error:
*Invalid postback or callback argument. Event validation is enabled using 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. *
Any ideas on how to get around this?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅此相关帖子:无效的回发或回调参数。使用“”启用事件验证
See this related post: Invalid postback or callback argument. Event validation is enabled using '<pages enableEventValidation="true"/>'