//Condition.html Conditional Test
Enter the number
//Conditional.jsp <% switch (Integer.parseInt(request.getParameter("number"))) { case 0: %> You have entered the number 0 <% break; case 1: %> You have entered the number 1 <% break; default: %> You can enter either o or 1 <% } %>