At the time of deleting an object, I confirm with a MessageBox
( System.Windows.Forms.MessageBox
), but being a web application, this MessageBox
comes after the browser.
The code is as follows:
Dim result As Integer = System.Windows.Forms.MessageBox.Show(Traductor.Traducir("pregEliminar"), Traductor.Traducir("ElVehi"), System.Windows.Forms.MessageBoxButtons.YesNo)
And that's where I'm going to confirm.
The case is: How can I do a "popup" (without JS) or a MessageBox
that comes out in front of the browser?
Greetings!