我有一个中继器,在它的 ItemCommand 代码中,我需要做一个数据库检查是否删除了一些记录,如果是,询问用户是否要继续。像这样的东西
If e.CommandName="Clone" Then
'Do the database check to see if records deleted and if yes
'show a confirmation dialog and if user answers "yes" continue, if "no" stop
End If
“克隆”命令来自 LinkButton。此外,我想在 ItemCommand 而不是 ItemCreated 或 DataBound 中执行此操作,因为我不希望为每条记录添加检查。它仅在我单击链接按钮时执行
这可能吗?谢谢。