I am doing web application in that I want to validate two fields in the JSP form. In registration filed I have so many fields.In that I want to validate password and conform
You can use if statement to compare
if(password == conformPassword) { //TO-DO } else { //TO-DO }