RadGrid InsertCommand 事件在每次页面刷新时重复
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为问题在于,您必须在处理插入事件的逻辑后分离事件,如果这不是问题,您必须将刷新模型的逻辑与按钮的操作分开,因为按钮的方法不应在刷新时运行
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