<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
<html>
<head>
<title>Example of x:out tag</title>
</head>
<body>
<c:import var="importFile" url="employee.xml"/>
<x:parse var="doc" doc="${importFile}"/>
<table border=1>
<tr>
<th>Given Xml Document</th>
</tr>
<tr>
<td><pre><x:out select="$importFile"/></pre></td>
</tr>
</table>
</body>
</html>
|