得到“无效的回发或回调参数”单击图像按钮时出错

发布于 2024-08-21 07:00:32 字数 366 浏览 6 评论 0原文

在我的应用程序中,我有带有图像的视频。当我点击任何视频时,它会显示以下消息:

回发或回调参数无效。事件验证已启用 在配置中使用或<%@ 页面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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怀里藏娇 2024-08-28 07:00:32

我们需要看一些代码。但消除错误的最简单方法是关闭 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.

羁绊已千年 2024-08-28 07:00:32

简单地放置您的方法,即在“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文