Mega Code Archive

 
Categories / Java / JSTL
 

JSTL Exception

<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> <html>   <head>     <title>Throw an Exception</title>   </head>   <body>   <c:set var="x" value="10" scope="page" />   <c:set var="y" value="five" scope="page" />   x divided by y is    <c:out value="${x/y}" />   <br />   </body> </html>                     JSTL-Exception-UnCaughtException.zip( 852 k)