Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

messagebox

Status
Not open for further replies.

KryptoS

Programmer
Feb 7, 2001
240
BE
So here is my question

If I submit a form I first want a messagebox with the question: do you really want to submit this? ... if I push no => the form isn't submitted, if I push yes => the form will be submitted ... can someone help me?

thx a lot!!!
 
Use JavaScript:

In an OnSubmit function have something like:

if (confirm("Are you sure that you want to submit?") {
form.submit();
return true;
}
else {
return false;
} Mise Le Meas,

Mighty :)
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Sponsor

Back
Top