<%-- Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. --%> <%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %> <%@ taglib prefix="mytag" uri="/WEB-INF/tlds/jsp2/jsp2-example-taglib.tld" %> <fmt:setBundle basename="LocalStrings"/> <html> <head> <title><fmt:message key="repeat.jsp.title"/></title> </head> <body> <h1><fmt:message key="repeat.jsp.title"/></h1> <hr> <p><fmt:message key="repeat.jsp.overview1"/></p> <p><fmt:message key="repeat.jsp.overview2"/></p> <br> <b><u><fmt:message key="repeat.jsp.result"/></u></b><br> <mytag:repeat num="5"> Invocation ${count} of 5<br> </mytag:repeat> </body> </html>