RadGrid InsertCommand 事件在每次页面刷新时重复

发布于 2024-11-06 16:44:19 字数 310 浏览 5 评论 0原文

我正在使用 MasterTableEditForm 在 RadGrid 中插入行。在编辑表单中,我有一个带有 commandname =“PerformInsert”属性的按钮,用于插入新行。

在 C# 中,我使用 InsertCommand 事件来实现自定义插入逻辑。 此后,我的 MasterTableEditForm 正在关闭,但每次刷新页面时,InsertCommand 都会再次使用 commandname =“PerformInsert”属性进行处理,并且重复插入操作。

那么我该怎么做才能避免多次 InsertCommand 处理呢?

谢谢!

I'm using MasterTableEditForm for inserting rows in RadGrid. In edit form I have a button with commandname = "PerformInsert" property, for inserting new row.

In C#, I'm using InsertCommand event for my custom insert logic.
After this, my MasterTableEditForm is closing, but every time when I refresh page, InsertCommand is handling again with commandname = "PerformInsert" property and Insert operation is repeating.

So what can I do, to avoid multiple InsertCommand handling?

thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

笑叹一世浮沉 2024-11-13 16:44:19

我认为问题在于,您必须在处理插入事件的逻辑后分离事件,如果这不是问题,您必须将刷新模型的逻辑与按钮的操作分开,因为按钮的方法不应在刷新时运行

I think the problem is that you must detach event after handling logic for Insert event, if that is not a problem you must seperate logic for refreshing your model from acion for your button, because method for the button should not be runnnig on refresh

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