Un simple test avec JSP
Cette page montre comment faire un simple test avec JHTML.
<%
// Parameters come as strings
String process = request.getParameter("process");
String process2 = request.getParameter("process2");
out.println("DEBUG: process = " + process + ", process2 = " + process2 + "
");
if ((process != null) || (process2 !=null)) {
String choice = request.getParameter("choice");
String choice2 = request.getParameter("choice2");
// Integer.parseInt() translates a string to an Integer
int score = Integer.parseInt(choice) + Integer.parseInt(choice2);
out.print("Votre score est de " + score + "
");
if (score < 3) {
out.print ("Vous êtes un débutant
");
} else if (score < 5) {
out.print ("Vous avez un niveau moyen
");
} else {
out.print ("Vous êtes un expert !
");
}
if (process2 != null) {
out.print("Merci pour avoir essayé ce truc !");
}
else {
out.print("
Vous pouvez essayer de nouveau ce formulaire:
");
// alternatively a destroy method ??
}
}
if (process2 == null) {
%>
Remplissez le formulaire suivant SVP:
<%
// end if
}
%>