comfirm box

Hi;I would like to replace a exception msg by a confirm box with two buttons "validate" et "Cancel" but different of the windows confirm box (a confirm box that I can personalized).regards;
[210 byte] By [yanis97a] at [2007-11-27 1:54:47]
# 1
see JOptionPane and especially JOptionPane.showConfirmDialog(...) for this :)you also have a java tut for "how to use joptionpane"
calvino_inda at 2007-7-12 1:26:57 > top of Java-index,Java Essentials,Java Programming...
# 2

hi

What you are using? either jsp or java file using Joption.If you are using jsp, u can use this code:

this is simple javascript and you have to put this code inside javascript

if(confirm("Do You Want To Save It")==true){

document.RoleMaster.action=""

document.RoleMaster.method="post";

document.RoleMaster.submit();

}else{

return false;

}

sandysharma2000a at 2007-7-12 1:26:57 > top of Java-index,Java Essentials,Java Programming...