<%@ page session="false" %>
<%@ taglib uri="looptags.jar" prefix="test" %>

<html>
	<head>
		<title>Loop TagLibrary example</title>
	</head>
	
	<body>
		This example shows how to use a simple loop-tag with dynamic attributes.<br>
		<br>

		<% int x = 0; %>

		<table border="2">
			<test:loop count="10">
				<tr>
					<test:loop count="<%=Math.random() * 10f%>">
						<td><%=x++%></td>
					</test:loop>
				</tr>
			</test:loop>
		</table>	
		End...
	</body>
</html>