JSTL Exception: UnCaught Exception : Exceptions « JSTL « Java
- Java
- JSTL
- Exceptions
JSTL Exception: UnCaught 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)Related examples in the same category