JSP Java


  
    Using Compound Statements
  
  
    

Using Compound Statements


    <%
        int value = 10;
        if(value > 0) {
            out.println("The number was positive.");                
            out.println("Absolute value of " + value + " = " + value);
        }
    %>