是否可以使用后面的代码提出是/否的确认消息,而不使用客户端点击?
我的问题设置:
我无法事先检查依赖关系以在删除按钮上设置javascript确认(性能会因[其他数据库问题...]而死亡。)
我需要使用返回值从函数中引发消息,后面的代码可以使用该值。有没有本地方法可以做到这一点?
小样本:
Private Sub Delete(ByVal sender As Object, Optional ByVal e As System.EventArgs = Nothing)
//Do check for dependencies...
If intDependencyCounter > 0 Then
//This is where i need my message to be shown
Dim blUserInput As Boolean = True/False //depends on user input
If blUserInput = False Then
//Cancel function...
Else
//Keep going with function...
EndIf
EndIf
End Sub
希望有人能告诉我如何解决这个问题。
此致 Megajin