JSP Java Tutorial

< HTML>
  
    Using the if Statement
  
  
    

Using the if Statement


    <%
        int value = 10;
        if(value > 0)
            out.println("Absolute value of " + value + " = " + value);
    %>