Simple calculation and output : HTML Output « JSTL « Java






Simple calculation and output


<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
  <head>
    <title>Out Examples</title>
  </head>

  <body>
  <h3>Out Example</h3>

  10 * 3 = 
  <c:out value="${10*3}" />

  <br />
  </body>
</html>


           
       








JSTL-EL-Output.zip( 851 k)

Related examples in the same category

1.Output a table
2.Out with Tag Escaping Examples
3.Out Default Examples