得到“无效的回发或回调参数”单击图像按钮时出错
在我的应用程序中,我有带有图像的视频。当我点击任何视频时,它会显示以下消息:
回发或回调参数无效。事件验证已启用 在配置中使用或<%@ 页面EnableEventValidation="true" %>在一个页面中。为了安全 目的,此功能验证回发或回调的参数 事件源自最初呈现的服务器控件 他们。如果数据有效且符合预期,请使用 ClientScriptManager.RegisterForEventValidation 方法以便 注册回发或回调数据以进行验证。
我将 EnableEventValidation="true"
都放置在该特定页面的 web.config 中,但它给出了相同的错误。
In my application, I have videos with an image. When I click on any video, it is showing this message:
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.
I placed the EnableEventValidation="true"
both in web.config in that particular page but it is giving same error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们需要看一些代码。但消除错误的最简单方法是关闭 EnableEventValidation,就像它所说的那样...将此页面设置为“false”,您将不会看到错误。
We need to see some code. But the easiest way to get rid of the error is to turn off EnableEventValidation, just like it says... Set this to "false" for this page and you won't see the error.
简单地放置您的方法,即在“ispostback”方法中从数据库获取数据,然后它不会给出任何错误。
我遇到了同样的问题,我将代码放在页面加载的 ispostback 方法中,它工作正常。
simple place your method, that fetch the data from the database in "ispostback" method then it will not give any error.
i got the same problem i place the code in ispostback method in page load it is working fine.