Messagebox

G

Guest

What is the way/code to generate a messagebox to get confirmation from users
in ASP.net, e.g. before they delete a record, i want a message box to pop up.

Thanks

Ed
 
H

Herfried K. Wagner [MVP]

* "=?Utf-8?B?RWQ=?= said:
What is the way/code to generate a messagebox to get confirmation from users
in ASP.net, e.g. before they delete a record, i want a message box to pop up.

For ASP.NET questions, consider turning to the ASP.NET group:

<URL:
 
F

FusionGuy

if (MessageBox.ShowDialog(this, "some string") == DialogResult.OK)
{
// call your delete function here.
}
 
F

FusionGuy

On second thought I should have read your message better and realized you
meant ASP.NET.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top