blob: b34631b25d051554633355515f5ea056e25d37ab [file] [log] [blame]
<%@taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Showcase - Tags - Non UI Tags - Subset Tag</title>
</head>
<body>
<s:generator id="iterator" val="%{iteratorValue}" separator="," />
<s:subset count="%{count}" start="%{start}" source="%{#attr.iterator}" >
<s:iterator>
<s:property /><br/>
</s:iterator>
</s:subset>
<s:url value="%{'/tags/non-ui/'}" id="url" /><s:a href="%{#url}">Back To Non-UI Demo</s:a>
<s:url value="%{'/'}" id="url" /><s:a href="%{#url}">Back To Showcase</s:a>
</body>
</html>