Hi, I made a form and i need to have a message box that inform the user if one or more field are empty. I tried with the following: <% if (".....one field is null.....") { this.showMessageDialog(null,"You need to enter a value..."); } else { %> <%@ include file="Response.jsp" %> <% } %> But it does'nt work. Do i have to insert the showMessageDialog inside my bean with the parent.showMesageDialog()? I know that i can do it with javascript but i prefer java. Is it possible?? Thank you very much Jeff